terraspace 0.3.0 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.cody/aws/bin/build.sh +2 -0
- data/.cody/azurerm/bin/build.sh +2 -0
- data/.cody/google/bin/build.sh +2 -0
- data/CHANGELOG.md +26 -1
- data/README.md +2 -2
- data/lib/terraspace.rb +2 -0
- data/lib/terraspace/all/preview.rb +1 -1
- data/lib/terraspace/all/summary.rb +21 -1
- data/lib/terraspace/app.rb +1 -0
- data/lib/terraspace/builder.rb +9 -0
- data/lib/terraspace/cli.rb +25 -25
- data/lib/terraspace/cli/all.rb +9 -9
- data/lib/terraspace/cli/cloud.rb +3 -9
- data/lib/terraspace/cli/cloud/runs.rb +0 -2
- data/lib/terraspace/cli/commander.rb +0 -10
- data/lib/terraspace/cli/help/all/down.md +32 -0
- data/lib/terraspace/cli/help/all/graph.md +21 -0
- data/lib/terraspace/cli/help/all/output.md +22 -0
- data/lib/terraspace/cli/help/all/plan.md +25 -0
- data/lib/terraspace/cli/help/all/providers.md +21 -0
- data/lib/terraspace/cli/help/all/refresh.md +17 -0
- data/lib/terraspace/cli/help/all/show.md +21 -0
- data/lib/terraspace/cli/help/all/up.md +27 -0
- data/lib/terraspace/cli/help/all/validate.md +21 -0
- data/lib/terraspace/cli/help/build.md +6 -0
- data/lib/terraspace/cli/help/bundle.md +9 -5
- data/lib/terraspace/cli/help/check_setup.md +9 -0
- data/lib/terraspace/cli/help/clean.md +5 -0
- data/lib/terraspace/cli/help/cloud/destroy.md +16 -0
- data/lib/terraspace/cli/help/cloud/list.md +7 -0
- data/lib/terraspace/cli/help/cloud/runs/list.md +3 -3
- data/lib/terraspace/cli/help/cloud/runs/prune.md +2 -2
- data/lib/terraspace/cli/help/cloud/sync.md +26 -2
- data/lib/terraspace/cli/help/console.md +8 -0
- data/lib/terraspace/cli/help/down.md +26 -0
- data/lib/terraspace/cli/help/info.md +43 -0
- data/lib/terraspace/cli/help/init.md +37 -0
- data/lib/terraspace/cli/help/list.md +20 -0
- data/lib/terraspace/cli/help/log.md +8 -2
- data/lib/terraspace/cli/help/logs/remove.md +5 -0
- data/lib/terraspace/cli/help/logs/truncate.md +5 -0
- data/lib/terraspace/cli/help/new/bootstrap_test.md +8 -0
- data/lib/terraspace/cli/help/new/example.md +8 -0
- data/lib/terraspace/cli/help/new/git_hook.md +6 -0
- data/lib/terraspace/cli/help/new/module.md +9 -0
- data/lib/terraspace/cli/help/new/module_test.md +12 -0
- data/lib/terraspace/cli/help/new/plugin.md +49 -0
- data/lib/terraspace/cli/help/new/project.md +40 -0
- data/lib/terraspace/cli/help/new/project_test.md +8 -0
- data/lib/terraspace/cli/help/new/shim.md +21 -0
- data/lib/terraspace/cli/help/new/stack.md +9 -0
- data/lib/terraspace/cli/help/output.md +6 -0
- data/lib/terraspace/cli/help/plan.md +29 -0
- data/lib/terraspace/cli/help/providers.md +18 -0
- data/lib/terraspace/cli/help/refresh.md +11 -0
- data/lib/terraspace/cli/help/seed.md +7 -0
- data/lib/terraspace/cli/help/show.md +36 -0
- data/lib/terraspace/cli/help/summary.md +11 -0
- data/lib/terraspace/cli/help/test.md +35 -0
- data/lib/terraspace/cli/help/up.md +30 -0
- data/lib/terraspace/cli/help/validate.md +9 -0
- data/lib/terraspace/cli/info.rb +4 -16
- data/lib/terraspace/cli/logs.rb +1 -1
- data/lib/terraspace/cli/new.rb +18 -18
- data/lib/terraspace/cli/new/git_hook.rb +4 -1
- data/lib/terraspace/cli/new/project.rb +1 -1
- data/lib/terraspace/cli/summary.rb +2 -2
- data/lib/terraspace/command.rb +1 -1
- data/lib/terraspace/compiler/backend.rb +10 -0
- data/lib/terraspace/compiler/builder.rb +2 -1
- data/lib/terraspace/compiler/commands_concern.rb +18 -0
- data/lib/terraspace/compiler/dependencies/helpers.rb +34 -0
- data/lib/terraspace/compiler/dsl/syntax/helpers/common.rb +0 -26
- data/lib/terraspace/compiler/dsl/syntax/tfvar.rb +1 -0
- data/lib/terraspace/compiler/erb/context.rb +1 -1
- data/lib/terraspace/compiler/erb/helpers.rb +6 -0
- data/lib/terraspace/dependency/graph.rb +2 -1
- data/lib/terraspace/dependency/helper/base.rb +7 -0
- data/lib/terraspace/dependency/helper/depends_on.rb +12 -0
- data/lib/terraspace/dependency/helper/output.rb +11 -0
- data/lib/terraspace/plugin/summary/interface.rb +1 -1
- data/lib/terraspace/shell.rb +44 -16
- data/lib/terraspace/terraform/cloud/runs/lister.rb +0 -2
- data/lib/terraspace/terraform/cloud/syncer.rb +2 -2
- data/lib/terraspace/terraform/cloud/workspace.rb +0 -9
- data/lib/terraspace/terraform/remote_state/fetcher.rb +37 -7
- data/lib/terraspace/terraform/remote_state/marker/output.rb +3 -1
- data/lib/terraspace/terraform/remote_state/null_object.rb +40 -0
- data/lib/terraspace/terraform/remote_state/output_proxy.rb +18 -14
- data/lib/terraspace/version.rb +1 -1
- data/spec/fixtures/dependencies/app/stacks/a1/tfvars/dev.tfvars +1 -0
- data/spec/fixtures/fetcher/c1.json +4 -0
- data/spec/terraspace/all/summary_spec.rb +1 -1
- data/spec/terraspace/compiler/erb/render_spec.rb +15 -0
- data/spec/terraspace/dependency/helper/depends_on_spec.rb +27 -0
- data/spec/terraspace/dependency/helper/output_spec.rb +29 -0
- data/spec/terraspace/terraform/remote_state/fetcher_spec.rb +108 -27
- data/spec/terraspace/terraform/remote_state/marker/output_spec.rb +36 -0
- data/spec/terraspace/terraform/remote_state/output_proxy_spec.rb +69 -0
- metadata +62 -3
- data/lib/terraspace/cli/help/update.md +0 -5
@@ -0,0 +1,37 @@
|
|
1
|
+
Typically, Terrasapce auto init should handle initialization. You can run init if you need to though.
|
2
|
+
|
3
|
+
## Example
|
4
|
+
|
5
|
+
$ terraspace init demo
|
6
|
+
Building .terraspace-cache/us-west-2/dev/stacks/demo
|
7
|
+
Built in .terraspace-cache/us-west-2/dev/stacks/demo
|
8
|
+
Current directory: .terraspace-cache/us-west-2/dev/stacks/demo
|
9
|
+
=> terraform init -get
|
10
|
+
Initializing modules...
|
11
|
+
|
12
|
+
Initializing the backend...
|
13
|
+
|
14
|
+
Initializing provider plugins...
|
15
|
+
- Using previously-installed hashicorp/aws v3.7.0
|
16
|
+
- Using previously-installed hashicorp/random v2.3.0
|
17
|
+
|
18
|
+
The following providers do not have any version constraints in configuration,
|
19
|
+
so the latest version was installed.
|
20
|
+
|
21
|
+
To prevent automatic upgrades to new major versions that may contain breaking
|
22
|
+
changes, we recommend adding version constraints in a required_providers block
|
23
|
+
in your configuration, with the constraint strings suggested below.
|
24
|
+
|
25
|
+
* hashicorp/aws: version = "~> 3.7.0"
|
26
|
+
* hashicorp/random: version = "~> 2.3.0"
|
27
|
+
|
28
|
+
Terraform has been successfully initialized!
|
29
|
+
|
30
|
+
You may now begin working with Terraform. Try running "terraform plan" to see
|
31
|
+
any changes that are required for your infrastructure. All Terraform commands
|
32
|
+
should now work.
|
33
|
+
|
34
|
+
If you ever set or change modules or backend configuration for Terraform,
|
35
|
+
rerun this command to reinitialize your working directory. If you forget, other
|
36
|
+
commands will detect it and remind you to do so if necessary.
|
37
|
+
$
|
@@ -0,0 +1,20 @@
|
|
1
|
+
## Examples
|
2
|
+
|
3
|
+
List both modules and stacks.
|
4
|
+
|
5
|
+
$ terraspace list
|
6
|
+
app/modules/example
|
7
|
+
app/stacks/demo
|
8
|
+
$
|
9
|
+
|
10
|
+
List only stacks.
|
11
|
+
|
12
|
+
$ terraspace list -t stack
|
13
|
+
app/stacks/demo
|
14
|
+
$
|
15
|
+
|
16
|
+
List only modules.
|
17
|
+
|
18
|
+
$ terraspace list -t module
|
19
|
+
app/modules/example
|
20
|
+
$
|
@@ -6,6 +6,8 @@ Follow all the logs as you're running `terraspace all up`:
|
|
6
6
|
|
7
7
|
terraspace log -f
|
8
8
|
|
9
|
+
Note, Terraspace automatically checks every second for new logs and adds them to be followed.
|
10
|
+
|
9
11
|
## View Logs
|
10
12
|
|
11
13
|
View last 10 lines of each log file.
|
@@ -23,7 +25,7 @@ To show all logs, use the `-a` option.
|
|
23
25
|
|
24
26
|
terraspace log up -a
|
25
27
|
|
26
|
-
Note, if both an action and stack is specified, then it defaults to showing all logs. If you want to
|
28
|
+
Note, if both an action and stack is specified, then it defaults to showing all logs. If you want not to show all logs, use `--no-all`.
|
27
29
|
|
28
30
|
## Tail Logs
|
29
31
|
|
@@ -36,7 +38,11 @@ To tail logs, use the `-f` option.
|
|
36
38
|
|
37
39
|
## Timestamps
|
38
40
|
|
39
|
-
The timestamps are shown by default when you are looking for multiple files. When you specify
|
41
|
+
The timestamps are shown by default when you are looking for multiple files. When you specify both the action and stack for a single log file, then timestamps are not shown.
|
40
42
|
|
41
43
|
terraspace log up # timestamps will be shown in this case
|
42
44
|
terraspace log up network # timestamps not be shown in this case
|
45
|
+
|
46
|
+
To show timestamps:
|
47
|
+
|
48
|
+
terraspace up up network --timestamps
|
@@ -0,0 +1,12 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace new module_test example
|
4
|
+
=> Creating module test: example
|
5
|
+
exist app/modules/example
|
6
|
+
create app/modules/example/test/.rspec
|
7
|
+
create app/modules/example/test/Gemfile
|
8
|
+
create app/modules/example/test/spec/fixtures/stack/main.tf
|
9
|
+
create app/modules/example/test/spec/fixtures/stack/outputs.tf
|
10
|
+
create app/modules/example/test/spec/main_spec.rb
|
11
|
+
create app/modules/example/test/spec/spec_helper.rb
|
12
|
+
$
|
@@ -0,0 +1,49 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace new plugin mycloud
|
4
|
+
=> Creating new plugin: mycloud
|
5
|
+
create terraspace_plugin_mycloud
|
6
|
+
create terraspace_plugin_mycloud/.gitignore
|
7
|
+
create terraspace_plugin_mycloud/.rspec
|
8
|
+
create terraspace_plugin_mycloud/CHANGELOG.md
|
9
|
+
create terraspace_plugin_mycloud/Gemfile
|
10
|
+
create terraspace_plugin_mycloud/LICENSE.txt
|
11
|
+
create terraspace_plugin_mycloud/README.md
|
12
|
+
create terraspace_plugin_mycloud/Rakefile
|
13
|
+
create terraspace_plugin_mycloud/bin/console
|
14
|
+
create terraspace_plugin_mycloud/bin/setup
|
15
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/module/main.tf
|
16
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/module/outputs.tf
|
17
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/module/variables.tf
|
18
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/project/config/terraform/backend.tf
|
19
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/project/config/terraform/provider.tf
|
20
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/stack/main.tf
|
21
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/stack/outputs.tf
|
22
|
+
create terraspace_plugin_mycloud/lib/templates/hcl/stack/variables.tf
|
23
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/module/main.rb
|
24
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/module/outputs.rb
|
25
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/module/variables.rb
|
26
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/project/config/terraform/backend.rb
|
27
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/project/config/terraform/provider.rb
|
28
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/stack/main.rb
|
29
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/stack/outputs.rb
|
30
|
+
create terraspace_plugin_mycloud/lib/templates/ruby/stack/variables.rb
|
31
|
+
create terraspace_plugin_mycloud/lib/templates/test/rspec/module/test/.rspec
|
32
|
+
create terraspace_plugin_mycloud/lib/templates/test/rspec/module/test/Gemfile
|
33
|
+
create terraspace_plugin_mycloud/lib/templates/test/rspec/module/test/spec/fixtures/stack/main.tf
|
34
|
+
create terraspace_plugin_mycloud/lib/templates/test/rspec/module/test/spec/fixtures/stack/outputs.tf
|
35
|
+
create terraspace_plugin_mycloud/lib/templates/test/rspec/module/test/spec/fixtures/stack/variables.tf
|
36
|
+
create terraspace_plugin_mycloud/lib/templates/test/rspec/module/test/spec/main_spec.rb
|
37
|
+
create terraspace_plugin_mycloud/lib/templates/test/rspec/module/test/spec/spec_helper.rb
|
38
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud.rb
|
39
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud/autoloader.rb
|
40
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud/clients.rb
|
41
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud/interfaces/backend.rb
|
42
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud/interfaces/config.rb
|
43
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud/interfaces/expander.rb
|
44
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud/interfaces/layer.rb
|
45
|
+
create terraspace_plugin_mycloud/lib/terraspace_plugin_mycloud/version.rb
|
46
|
+
create terraspace_plugin_mycloud/spec/spec_helper.rb
|
47
|
+
create terraspace_plugin_mycloud/spec/terraspace_provider_mycloud_spec.rb
|
48
|
+
create terraspace_plugin_mycloud/terraspace_plugin_mycloud.gemspec
|
49
|
+
$
|
@@ -0,0 +1,40 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace new project infra --plugin aws --examples
|
4
|
+
=> Creating new project called infra.
|
5
|
+
create infra
|
6
|
+
create infra/.gitignore
|
7
|
+
create infra/Gemfile
|
8
|
+
create infra/README.md
|
9
|
+
create infra/Terrafile
|
10
|
+
create infra/config/app.rb
|
11
|
+
exist infra
|
12
|
+
create infra/config/terraform/backend.tf
|
13
|
+
create infra/config/terraform/provider.tf
|
14
|
+
=> Creating test for new module: example
|
15
|
+
create infra/app/modules/example
|
16
|
+
create infra/app/modules/example/main.tf
|
17
|
+
create infra/app/modules/example/outputs.tf
|
18
|
+
create infra/app/modules/example/variables.tf
|
19
|
+
=> Creating new stack called demo.
|
20
|
+
create infra/app/stacks/demo
|
21
|
+
create infra/app/stacks/demo/main.tf
|
22
|
+
create infra/app/stacks/demo/outputs.tf
|
23
|
+
create infra/app/stacks/demo/variables.tf
|
24
|
+
=> Creating test bootstrap structure
|
25
|
+
exist infra
|
26
|
+
create infra/.rspec
|
27
|
+
create infra/spec/spec_helper.rb
|
28
|
+
=> Installing dependencies with: bundle install
|
29
|
+
Bundle complete! 3 Gemfile dependencies, 88 gems now installed.
|
30
|
+
Use `bundle info [gemname]` to see where a bundled gem is installed.
|
31
|
+
================================================================
|
32
|
+
Congrats! You have successfully created a terraspace project.
|
33
|
+
Check out the created files. Adjust to the examples and then deploy with:
|
34
|
+
|
35
|
+
cd infra
|
36
|
+
terraspace up demo -y # to deploy
|
37
|
+
terraspace down demo -y # to destroy
|
38
|
+
|
39
|
+
More info: https://terraspace.cloud/
|
40
|
+
$
|
@@ -0,0 +1,21 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace new shim
|
4
|
+
A terraspace shim as been generated at /usr/local/bin/terraspace
|
5
|
+
Please make sure that it is found in the $PATH.
|
6
|
+
|
7
|
+
You can double check with:
|
8
|
+
|
9
|
+
which terraspace
|
10
|
+
|
11
|
+
You should see
|
12
|
+
|
13
|
+
$ which terraspace
|
14
|
+
/usr/local/bin/terraspace
|
15
|
+
|
16
|
+
If you do not, please add /usr/local/bin to your PATH.
|
17
|
+
You can usually do so by adding this line to ~/.bash_profile and opening a new terminal to check.
|
18
|
+
|
19
|
+
export PATH=/usr/local/bin:/$PATH
|
20
|
+
|
21
|
+
$
|
@@ -0,0 +1,29 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace plan demo
|
4
|
+
=> terraform plan
|
5
|
+
Refreshing Terraform state in-memory prior to plan...
|
6
|
+
The refreshed state will be used to calculate this plan, but will not be
|
7
|
+
persisted to local or remote state storage.
|
8
|
+
|
9
|
+
random_pet.this: Refreshing state... [id=fond-sheep]
|
10
|
+
module.bucket.aws_s3_bucket.this: Refreshing state... [id=bucket-fond-sheep]
|
11
|
+
|
12
|
+
------------------------------------------------------------------------
|
13
|
+
|
14
|
+
An execution plan has been generated and is shown below.
|
15
|
+
Resource actions are indicated with the following symbols:
|
16
|
+
-/+ destroy and then create replacement
|
17
|
+
...
|
18
|
+
Plan: 2 to add, 0 to change, 2 to destroy.
|
19
|
+
|
20
|
+
Changes to Outputs:
|
21
|
+
~ bucket_name = "bucket-fond-sheep" -> (known after apply)
|
22
|
+
|
23
|
+
------------------------------------------------------------------------
|
24
|
+
|
25
|
+
Note: You didn't specify an "-out" parameter to save this plan, so Terraform
|
26
|
+
can't guarantee that exactly these actions will be performed if
|
27
|
+
"terraform apply" is subsequently run.
|
28
|
+
|
29
|
+
$
|
@@ -0,0 +1,18 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace providers demo
|
4
|
+
=> terraform providers
|
5
|
+
|
6
|
+
Providers required by configuration:
|
7
|
+
.
|
8
|
+
├── provider[registry.terraform.io/hashicorp/random]
|
9
|
+
└── module.bucket
|
10
|
+
└── provider[registry.terraform.io/hashicorp/aws]
|
11
|
+
|
12
|
+
Providers required by state:
|
13
|
+
|
14
|
+
provider[registry.terraform.io/hashicorp/aws]
|
15
|
+
|
16
|
+
provider[registry.terraform.io/hashicorp/random]
|
17
|
+
|
18
|
+
$
|
@@ -0,0 +1,36 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace show demo
|
4
|
+
=> terraform show
|
5
|
+
# random_pet.this:
|
6
|
+
resource "random_pet" "this" {
|
7
|
+
id = "fond-sheep"
|
8
|
+
length = 2
|
9
|
+
separator = "-"
|
10
|
+
}
|
11
|
+
|
12
|
+
# module.bucket.aws_s3_bucket.this:
|
13
|
+
resource "aws_s3_bucket" "this" {
|
14
|
+
acl = "private"
|
15
|
+
arn = "arn:aws:s3:::bucket-fond-sheep"
|
16
|
+
bucket = "bucket-fond-sheep"
|
17
|
+
bucket_domain_name = "bucket-fond-sheep.s3.amazonaws.com"
|
18
|
+
bucket_regional_domain_name = "bucket-fond-sheep.s3.us-west-2.amazonaws.com"
|
19
|
+
force_destroy = false
|
20
|
+
hosted_zone_id = "Z3BJ6K6RIION7M"
|
21
|
+
id = "bucket-fond-sheep"
|
22
|
+
region = "us-west-2"
|
23
|
+
request_payer = "BucketOwner"
|
24
|
+
tags = {}
|
25
|
+
|
26
|
+
versioning {
|
27
|
+
enabled = false
|
28
|
+
mfa_delete = false
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
|
33
|
+
Outputs:
|
34
|
+
|
35
|
+
bucket_name = "bucket-fond-sheep"
|
36
|
+
$
|
@@ -0,0 +1,11 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
$ terraspace summary
|
4
|
+
Summary of resources based on backend storage statefiles
|
5
|
+
Downloading statefiles to /tmp/terraspace/statefiles/terraform-state-111111111111-us-west-2-dev/us-west-2/dev/
|
6
|
+
stacks/demo/terraform.tfstate
|
7
|
+
random_pet this: sunny-chicken
|
8
|
+
aws_s3_bucket this: bucket-sunny-chicken
|
9
|
+
$
|
10
|
+
|
11
|
+
Also, check out `terraspace all show`.
|
@@ -0,0 +1,35 @@
|
|
1
|
+
## Example
|
2
|
+
|
3
|
+
Terraspace test just calls the configured test framework, by default, rspec.
|
4
|
+
Here's an example with output cleaned up to reduce noise:
|
5
|
+
|
6
|
+
$ terraspace test
|
7
|
+
=> rspec
|
8
|
+
|
9
|
+
main
|
10
|
+
Building test harness...
|
11
|
+
...
|
12
|
+
Test harness built: /tmp/terraspace/test-harnesses/demo-harness
|
13
|
+
=> terraspace up demo -y
|
14
|
+
Building .terraspace-cache/us-west-2/test/stacks/demo
|
15
|
+
Built in .terraspace-cache/us-west-2/test/stacks/demo
|
16
|
+
Current directory: .terraspace-cache/us-west-2/test/stacks/demo
|
17
|
+
=> terraform init -get >> /tmp/terraspace/log/init/demo.log
|
18
|
+
=> terraform plan -out /tmp/terraspace/plans/demo-20200920160313.plan
|
19
|
+
...
|
20
|
+
=> terraform apply -auto-approve /tmp/terraspace/plans/demo-20200920160313.plan
|
21
|
+
...
|
22
|
+
=> terraform destroy -auto-approve
|
23
|
+
random_pet.this: Refreshing state... [id=hopelessly-outgoing-serval]
|
24
|
+
module.bucket.aws_s3_bucket.this: Refreshing state... [id=bucket-hopelessly-outgoing-serval]
|
25
|
+
module.bucket.aws_s3_bucket.this: Destroying... [id=bucket-hopelessly-outgoing-serval]
|
26
|
+
module.bucket.aws_s3_bucket.this: Destruction complete after 0s
|
27
|
+
random_pet.this: Destroying... [id=hopelessly-outgoing-serval]
|
28
|
+
random_pet.this: Destruction complete after 0s
|
29
|
+
|
30
|
+
Destroy complete! Resources: 2 destroyed.
|
31
|
+
Time took: 5s
|
32
|
+
|
33
|
+
Finished in 22.08 seconds (files took 0.48602 seconds to load)
|
34
|
+
1 example, 0 failures
|
35
|
+
$
|