mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Add missing log mocks
I missed adding these in the original porting commit from the remote backend, because *.log is added to gitignore.
This commit is contained in:
parent
f4758803fe
commit
85f37f1aa5
7
internal/cloud/testdata/apply-destroy/apply.log
vendored
Normal file
7
internal/cloud/testdata/apply-destroy/apply.log
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Terraform v0.11.10
|
||||||
|
|
||||||
|
Initializing plugins and modules...
|
||||||
|
null_resource.hello: Destroying... (ID: 8657651096157629581)
|
||||||
|
null_resource.hello: Destruction complete after 0s
|
||||||
|
|
||||||
|
Apply complete! Resources: 0 added, 0 changed, 1 destroyed.
|
22
internal/cloud/testdata/apply-destroy/plan.log
vendored
Normal file
22
internal/cloud/testdata/apply-destroy/plan.log
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
null_resource.hello: Refreshing state... (ID: 8657651096157629581)
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
- destroy
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
- null_resource.hello
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 0 to add, 0 to change, 1 to destroy.
|
17
internal/cloud/testdata/apply-no-changes/plan.log
vendored
Normal file
17
internal/cloud/testdata/apply-no-changes/plan.log
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
null_resource.hello: Refreshing state... (ID: 8657651096157629581)
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
No changes. Infrastructure is up-to-date.
|
||||||
|
|
||||||
|
This means that Terraform did not detect any differences between your
|
||||||
|
configuration and real physical resources that exist. As a result, no
|
||||||
|
actions need to be performed.
|
12
internal/cloud/testdata/apply-no-changes/policy.log
vendored
Normal file
12
internal/cloud/testdata/apply-no-changes/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: true
|
||||||
|
|
||||||
|
This result means that Sentinel policies returned true and the protected
|
||||||
|
behavior is allowed by Sentinel policies.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (soft-mandatory)
|
||||||
|
|
||||||
|
Result: true
|
||||||
|
|
||||||
|
TRUE - Passthrough.sentinel:1:1 - Rule "main"
|
21
internal/cloud/testdata/apply-policy-hard-failed/plan.log
vendored
Normal file
21
internal/cloud/testdata/apply-policy-hard-failed/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
12
internal/cloud/testdata/apply-policy-hard-failed/policy.log
vendored
Normal file
12
internal/cloud/testdata/apply-policy-hard-failed/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: false
|
||||||
|
|
||||||
|
Sentinel evaluated to false because one or more Sentinel policies evaluated
|
||||||
|
to false. This false was not due to an undefined value or runtime error.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (hard-mandatory)
|
||||||
|
|
||||||
|
Result: false
|
||||||
|
|
||||||
|
FALSE - Passthrough.sentinel:1:1 - Rule "main"
|
7
internal/cloud/testdata/apply-policy-passed/apply.log
vendored
Normal file
7
internal/cloud/testdata/apply-policy-passed/apply.log
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Terraform v0.11.10
|
||||||
|
|
||||||
|
Initializing plugins and modules...
|
||||||
|
null_resource.hello: Creating...
|
||||||
|
null_resource.hello: Creation complete after 0s (ID: 8657651096157629581)
|
||||||
|
|
||||||
|
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
|
21
internal/cloud/testdata/apply-policy-passed/plan.log
vendored
Normal file
21
internal/cloud/testdata/apply-policy-passed/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
12
internal/cloud/testdata/apply-policy-passed/policy.log
vendored
Normal file
12
internal/cloud/testdata/apply-policy-passed/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: true
|
||||||
|
|
||||||
|
This result means that Sentinel policies returned true and the protected
|
||||||
|
behavior is allowed by Sentinel policies.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (soft-mandatory)
|
||||||
|
|
||||||
|
Result: true
|
||||||
|
|
||||||
|
TRUE - Passthrough.sentinel:1:1 - Rule "main"
|
7
internal/cloud/testdata/apply-policy-soft-failed/apply.log
vendored
Normal file
7
internal/cloud/testdata/apply-policy-soft-failed/apply.log
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Terraform v0.11.10
|
||||||
|
|
||||||
|
Initializing plugins and modules...
|
||||||
|
null_resource.hello: Creating...
|
||||||
|
null_resource.hello: Creation complete after 0s (ID: 8657651096157629581)
|
||||||
|
|
||||||
|
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
|
21
internal/cloud/testdata/apply-policy-soft-failed/plan.log
vendored
Normal file
21
internal/cloud/testdata/apply-policy-soft-failed/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
12
internal/cloud/testdata/apply-policy-soft-failed/policy.log
vendored
Normal file
12
internal/cloud/testdata/apply-policy-soft-failed/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: false
|
||||||
|
|
||||||
|
Sentinel evaluated to false because one or more Sentinel policies evaluated
|
||||||
|
to false. This false was not due to an undefined value or runtime error.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (soft-mandatory)
|
||||||
|
|
||||||
|
Result: false
|
||||||
|
|
||||||
|
FALSE - Passthrough.sentinel:1:1 - Rule "main"
|
7
internal/cloud/testdata/apply-variables/apply.log
vendored
Normal file
7
internal/cloud/testdata/apply-variables/apply.log
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Terraform v0.11.10
|
||||||
|
|
||||||
|
Initializing plugins and modules...
|
||||||
|
null_resource.hello: Creating...
|
||||||
|
null_resource.hello: Creation complete after 0s (ID: 8657651096157629581)
|
||||||
|
|
||||||
|
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
|
21
internal/cloud/testdata/apply-variables/plan.log
vendored
Normal file
21
internal/cloud/testdata/apply-variables/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
10
internal/cloud/testdata/apply-with-error/plan.log
vendored
Normal file
10
internal/cloud/testdata/apply-with-error/plan.log
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
|
||||||
|
Error: null_resource.foo: 1 error(s) occurred:
|
||||||
|
|
||||||
|
* null_resource.foo: 1:3: unknown function called: guid in:
|
||||||
|
|
||||||
|
${guid()}
|
7
internal/cloud/testdata/apply/apply.log
vendored
Normal file
7
internal/cloud/testdata/apply/apply.log
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Terraform v0.11.10
|
||||||
|
|
||||||
|
Initializing plugins and modules...
|
||||||
|
null_resource.hello: Creating...
|
||||||
|
null_resource.hello: Creation complete after 0s (ID: 8657651096157629581)
|
||||||
|
|
||||||
|
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
|
21
internal/cloud/testdata/apply/plan.log
vendored
Normal file
21
internal/cloud/testdata/apply/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
6
internal/cloud/testdata/plan-cost-estimation/ce.log
vendored
Normal file
6
internal/cloud/testdata/plan-cost-estimation/ce.log
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
+---------+------+-----+-------------+----------------------+
|
||||||
|
| PRODUCT | NAME | SKU | DESCRIPTION | DELTA |
|
||||||
|
+---------+------+-----+-------------+----------------------+
|
||||||
|
+---------+------+-----+-------------+----------------------+
|
||||||
|
| TOTAL | $0.000 USD / 720 HRS |
|
||||||
|
+---------+------+-----+-------------+----------------------+
|
5
internal/cloud/testdata/plan-cost-estimation/cost-estimate.log
vendored
Normal file
5
internal/cloud/testdata/plan-cost-estimation/cost-estimate.log
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
Cost estimation:
|
||||||
|
|
||||||
|
Waiting for cost estimation to complete...
|
||||||
|
Resources: 1 of 1 estimated
|
||||||
|
$25.488/mo +$25.488
|
20
internal/cloud/testdata/plan-cost-estimation/plan.log
vendored
Normal file
20
internal/cloud/testdata/plan-cost-estimation/plan.log
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
Terraform v0.12.9
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
23
internal/cloud/testdata/plan-long-line/plan.log
vendored
Normal file
23
internal/cloud/testdata/plan-long-line/plan.log
vendored
Normal file
File diff suppressed because one or more lines are too long
17
internal/cloud/testdata/plan-no-changes/plan.log
vendored
Normal file
17
internal/cloud/testdata/plan-no-changes/plan.log
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
null_resource.hello: Refreshing state... (ID: 8657651096157629581)
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
No changes. Infrastructure is up-to-date.
|
||||||
|
|
||||||
|
This means that Terraform did not detect any differences between your
|
||||||
|
configuration and real physical resources that exist. As a result, no
|
||||||
|
actions need to be performed.
|
12
internal/cloud/testdata/plan-no-changes/policy.log
vendored
Normal file
12
internal/cloud/testdata/plan-no-changes/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: true
|
||||||
|
|
||||||
|
This result means that Sentinel policies returned true and the protected
|
||||||
|
behavior is allowed by Sentinel policies.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (soft-mandatory)
|
||||||
|
|
||||||
|
Result: true
|
||||||
|
|
||||||
|
TRUE - Passthrough.sentinel:1:1 - Rule "main"
|
21
internal/cloud/testdata/plan-policy-hard-failed/plan.log
vendored
Normal file
21
internal/cloud/testdata/plan-policy-hard-failed/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
12
internal/cloud/testdata/plan-policy-hard-failed/policy.log
vendored
Normal file
12
internal/cloud/testdata/plan-policy-hard-failed/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: false
|
||||||
|
|
||||||
|
Sentinel evaluated to false because one or more Sentinel policies evaluated
|
||||||
|
to false. This false was not due to an undefined value or runtime error.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (hard-mandatory)
|
||||||
|
|
||||||
|
Result: false
|
||||||
|
|
||||||
|
FALSE - Passthrough.sentinel:1:1 - Rule "main"
|
21
internal/cloud/testdata/plan-policy-passed/plan.log
vendored
Normal file
21
internal/cloud/testdata/plan-policy-passed/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
12
internal/cloud/testdata/plan-policy-passed/policy.log
vendored
Normal file
12
internal/cloud/testdata/plan-policy-passed/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: true
|
||||||
|
|
||||||
|
This result means that Sentinel policies returned true and the protected
|
||||||
|
behavior is allowed by Sentinel policies.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (soft-mandatory)
|
||||||
|
|
||||||
|
Result: true
|
||||||
|
|
||||||
|
TRUE - Passthrough.sentinel:1:1 - Rule "main"
|
21
internal/cloud/testdata/plan-policy-soft-failed/plan.log
vendored
Normal file
21
internal/cloud/testdata/plan-policy-soft-failed/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
12
internal/cloud/testdata/plan-policy-soft-failed/policy.log
vendored
Normal file
12
internal/cloud/testdata/plan-policy-soft-failed/policy.log
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Sentinel Result: false
|
||||||
|
|
||||||
|
Sentinel evaluated to false because one or more Sentinel policies evaluated
|
||||||
|
to false. This false was not due to an undefined value or runtime error.
|
||||||
|
|
||||||
|
1 policies evaluated.
|
||||||
|
|
||||||
|
## Policy 1: Passthrough.sentinel (soft-mandatory)
|
||||||
|
|
||||||
|
Result: false
|
||||||
|
|
||||||
|
FALSE - Passthrough.sentinel:1:1 - Rule "main"
|
21
internal/cloud/testdata/plan-variables/plan.log
vendored
Normal file
21
internal/cloud/testdata/plan-variables/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
10
internal/cloud/testdata/plan-with-error/plan.log
vendored
Normal file
10
internal/cloud/testdata/plan-with-error/plan.log
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
|
||||||
|
Error: null_resource.foo: 1 error(s) occurred:
|
||||||
|
|
||||||
|
* null_resource.foo: 1:3: unknown function called: guid in:
|
||||||
|
|
||||||
|
${guid()}
|
21
internal/cloud/testdata/plan-with-working-directory/terraform/plan.log
vendored
Normal file
21
internal/cloud/testdata/plan-with-working-directory/terraform/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
21
internal/cloud/testdata/plan/plan.log
vendored
Normal file
21
internal/cloud/testdata/plan/plan.log
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Terraform v0.11.7
|
||||||
|
|
||||||
|
Configuring remote state backend...
|
||||||
|
Initializing Terraform configuration...
|
||||||
|
Refreshing Terraform state in-memory prior to plan...
|
||||||
|
The refreshed state will be used to calculate this plan, but will not be
|
||||||
|
persisted to local or remote state storage.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
An execution plan has been generated and is shown below.
|
||||||
|
Resource actions are indicated with the following symbols:
|
||||||
|
+ create
|
||||||
|
|
||||||
|
Terraform will perform the following actions:
|
||||||
|
|
||||||
|
+ null_resource.foo
|
||||||
|
id: <computed>
|
||||||
|
|
||||||
|
|
||||||
|
Plan: 1 to add, 0 to change, 0 to destroy.
|
Loading…
Reference in New Issue
Block a user