Skip to content

Instantly share code, notes, and snippets.

@maishsk
Created June 21, 2018 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maishsk/b3769ddff25b57a5e96cbc14903d322f to your computer and use it in GitHub Desktop.
Save maishsk/b3769ddff25b57a5e96cbc14903d322f to your computer and use it in GitHub Desktop.
Terraform results
root@maishsk-lin:/opt/git/playground/create-vpc/terraform# for i in {1..3}; do echo "starting run $i"; echo "create" ; time terraform apply -auto-approve ; echo "destroy" ; time terraform destroy -auto-approve; done
Starting run 1
Create
aws_vpc.testvpc: Creating...
assign_generated_ipv6_cidr_block: "" => "false"
cidr_block: "" => "192.168.90.0/24"
default_network_acl_id: "" => "<computed>"
default_route_table_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_classiclink: "" => "<computed>"
enable_classiclink_dns_support: "" => "<computed>"
enable_dns_hostnames: "" => "true"
enable_dns_support: "" => "true"
instance_tenancy: "" => "<computed>"
ipv6_association_id: "" => "<computed>"
ipv6_cidr_block: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.%: "" => "1"
tags.Name: "" => "testvpc"
aws_vpc.testvpc: Creation complete after 10s (ID: vpc-5c277b34)
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
20.882
Destroy
aws_vpc.testvpc: Refreshing state... (ID: vpc-5c277b34)
aws_vpc.testvpc: Destroying... (ID: vpc-5c277b34)
aws_vpc.testvpc: Destruction complete after 1s
Destroy complete! Resources: 1 destroyed.
12.967
Starting run 2
Create
aws_vpc.testvpc: Creating...
assign_generated_ipv6_cidr_block: "" => "false"
cidr_block: "" => "192.168.90.0/24"
default_network_acl_id: "" => "<computed>"
default_route_table_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_classiclink: "" => "<computed>"
enable_classiclink_dns_support: "" => "<computed>"
enable_dns_hostnames: "" => "true"
enable_dns_support: "" => "true"
instance_tenancy: "" => "<computed>"
ipv6_association_id: "" => "<computed>"
ipv6_cidr_block: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.%: "" => "1"
tags.Name: "" => "testvpc"
aws_vpc.testvpc: Creation complete after 10s (ID: vpc-742b771c)
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
15.636
Destroy
aws_vpc.testvpc: Refreshing state... (ID: vpc-742b771c)
aws_vpc.testvpc: Destroying... (ID: vpc-742b771c)
aws_vpc.testvpc: Destruction complete after 1s
Destroy complete! Resources: 1 destroyed.
12.539
Starting run 3
Create
aws_vpc.testvpc: Creating...
assign_generated_ipv6_cidr_block: "" => "false"
cidr_block: "" => "192.168.90.0/24"
default_network_acl_id: "" => "<computed>"
default_route_table_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_classiclink: "" => "<computed>"
enable_classiclink_dns_support: "" => "<computed>"
enable_dns_hostnames: "" => "true"
enable_dns_support: "" => "true"
instance_tenancy: "" => "<computed>"
ipv6_association_id: "" => "<computed>"
ipv6_cidr_block: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.%: "" => "1"
tags.Name: "" => "testvpc"
aws_vpc.testvpc: Still creating... (10s elapsed)
aws_vpc.testvpc: Creation complete after 10s (ID: vpc-19267a71)
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
15.839
Destroy
aws_vpc.testvpc: Refreshing state... (ID: vpc-19267a71)
aws_vpc.testvpc: Destroying... (ID: vpc-19267a71)
aws_vpc.testvpc: Destruction complete after 1s
Destroy complete! Resources: 1 destroyed.
12.452
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment