Created
December 13, 2019 14:23
-
-
Save bflad/748b4139be5f4ec99b97f92066dd1101 to your computer and use it in GitHub Desktop.
Terraform Performing Default Provider Validation When Removing Aliased Provider Resource
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ terraform init | |
Initializing the backend... | |
Initializing provider plugins... | |
- Checking for available provider plugins... | |
- Downloading plugin for provider "aws" (hashicorp/aws) 2.41.0... | |
Terraform has been successfully initialized! | |
You may now begin working with Terraform. Try running "terraform plan" to see | |
any changes that are required for your infrastructure. All Terraform commands | |
should now work. | |
If you ever set or change modules or backend configuration for Terraform, | |
rerun this command to reinitialize your working directory. If you forget, other | |
commands will detect it and remind you to do so if necessary. | |
$ terraform apply | |
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: | |
# aws_vpc.example1 will be created | |
+ resource "aws_vpc" "example1" { | |
+ arn = (known after apply) | |
+ assign_generated_ipv6_cidr_block = false | |
+ cidr_block = "10.0.0.0/16" | |
+ default_network_acl_id = (known after apply) | |
+ default_route_table_id = (known after apply) | |
+ default_security_group_id = (known after apply) | |
+ dhcp_options_id = (known after apply) | |
+ enable_classiclink = (known after apply) | |
+ enable_classiclink_dns_support = (known after apply) | |
+ enable_dns_hostnames = (known after apply) | |
+ enable_dns_support = true | |
+ id = (known after apply) | |
+ instance_tenancy = "default" | |
+ ipv6_association_id = (known after apply) | |
+ ipv6_cidr_block = (known after apply) | |
+ main_route_table_id = (known after apply) | |
+ owner_id = (known after apply) | |
} | |
# aws_vpc.example2 will be created | |
+ resource "aws_vpc" "example2" { | |
+ arn = (known after apply) | |
+ assign_generated_ipv6_cidr_block = false | |
+ cidr_block = "10.1.0.0/16" | |
+ default_network_acl_id = (known after apply) | |
+ default_route_table_id = (known after apply) | |
+ default_security_group_id = (known after apply) | |
+ dhcp_options_id = (known after apply) | |
+ enable_classiclink = (known after apply) | |
+ enable_classiclink_dns_support = (known after apply) | |
+ enable_dns_hostnames = (known after apply) | |
+ enable_dns_support = true | |
+ id = (known after apply) | |
+ instance_tenancy = "default" | |
+ ipv6_association_id = (known after apply) | |
+ ipv6_cidr_block = (known after apply) | |
+ main_route_table_id = (known after apply) | |
+ owner_id = (known after apply) | |
} | |
Plan: 2 to add, 0 to change, 0 to destroy. | |
Do you want to perform these actions? | |
Terraform will perform the actions described above. | |
Only 'yes' will be accepted to approve. | |
Enter a value: yes | |
aws_vpc.example1: Creating... | |
aws_vpc.example2: Creating... | |
aws_vpc.example2: Creation complete after 2s [id=vpc-042ac3f178d1d1598] | |
aws_vpc.example1: Creation complete after 2s [id=vpc-0c291effaf19b18bf] | |
Apply complete! Resources: 2 added, 0 changed, 0 destroyed. | |
$ terraform apply | |
aws_vpc.example2: Refreshing state... [id=vpc-042ac3f178d1d1598] | |
aws_vpc.example1: Refreshing state... [id=vpc-0c291effaf19b18bf] | |
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: | |
# aws_vpc.example2 will be destroyed | |
- resource "aws_vpc" "example2" { | |
- arn = "arn:aws:ec2:us-east-2:--OMITTED--:vpc/vpc-042ac3f178d1d1598" -> null | |
- assign_generated_ipv6_cidr_block = false -> null | |
- cidr_block = "10.1.0.0/16" -> null | |
- default_network_acl_id = "acl-081e71527dfc262ce" -> null | |
- default_route_table_id = "rtb-06509b9176227ad94" -> null | |
- default_security_group_id = "sg-0f36a781edae01553" -> null | |
- dhcp_options_id = "dopt-7bfe0a12" -> null | |
- enable_dns_hostnames = false -> null | |
- enable_dns_support = true -> null | |
- id = "vpc-042ac3f178d1d1598" -> null | |
- instance_tenancy = "default" -> null | |
- main_route_table_id = "rtb-06509b9176227ad94" -> null | |
- owner_id = "--OMITTED--" -> null | |
- tags = {} -> null | |
} | |
Plan: 0 to add, 0 to change, 1 to destroy. | |
Do you want to perform these actions? | |
Terraform will perform the actions described above. | |
Only 'yes' will be accepted to approve. | |
Enter a value: yes | |
aws_vpc.example2: Destroying... [id=vpc-042ac3f178d1d1598] | |
aws_vpc.example2: Destruction complete after 0s | |
Error: Missing required argument | |
The argument "region" is required, but was not set. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2019/12/13 09:18:24 [INFO] Terraform version: 0.12.18 | |
2019/12/13 09:18:24 [INFO] Go runtime version: go1.13.4 | |
2019/12/13 09:18:24 [INFO] CLI args: []string{"/usr/local/bin/terraform", "apply", "-auto-approve"} | |
2019/12/13 09:18:24 [DEBUG] Attempting to open CLI config file: /Users/bflad/.terraformrc | |
2019/12/13 09:18:24 Loading CLI configuration from /Users/bflad/.terraformrc | |
2019/12/13 09:18:24 [INFO] CLI command args: []string{"apply", "-auto-approve"} | |
2019/12/13 09:18:24 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2019/12/13 09:18:24 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2019/12/13 09:18:24 [DEBUG] New state was assigned lineage "9ab3fed5-649e-3af6-ca05-8e523b9c5e5f" | |
2019/12/13 09:18:24 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend) | |
2019/12/13 09:18:24 [TRACE] Meta.Backend: instantiated backend of type <nil> | |
2019/12/13 09:18:24 [DEBUG] checking for provider in "." | |
2019/12/13 09:18:24 [DEBUG] checking for provider in "/usr/local/bin" | |
2019/12/13 09:18:24 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64" | |
2019/12/13 09:18:24 [DEBUG] found provider "terraform-provider-aws_v2.41.0_x4" | |
2019/12/13 09:18:24 [DEBUG] found valid plugin: "aws", "2.41.0", "/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4" | |
2019/12/13 09:18:24 [DEBUG] checking for provisioner in "." | |
2019/12/13 09:18:24 [DEBUG] checking for provisioner in "/usr/local/bin" | |
2019/12/13 09:18:24 [DEBUG] checking for provisioner in ".terraform/plugins/darwin_amd64" | |
2019/12/13 09:18:24 [TRACE] Meta.Backend: backend <nil> does not support operations, so wrapping it in a local backend | |
2019/12/13 09:18:24 [INFO] backend/local: starting Apply operation | |
2019/12/13 09:18:24 [TRACE] backend/local: requesting state manager for workspace "default" | |
2019/12/13 09:18:24 [TRACE] backend/local: state manager for workspace "default" will: | |
- read initial snapshot from terraform.tfstate | |
- write new snapshots to terraform.tfstate | |
- create any backup at terraform.tfstate.backup | |
2019/12/13 09:18:24 [TRACE] backend/local: requesting state lock for workspace "default" | |
2019/12/13 09:18:24 [TRACE] statemgr.Filesystem: preparing to manage state snapshots at terraform.tfstate | |
2019/12/13 09:18:24 [TRACE] statemgr.Filesystem: existing snapshot has lineage "bb0f74d9-0d7a-d194-2bc4-4a8c6caa8491" serial 7 | |
2019/12/13 09:18:24 [TRACE] statemgr.Filesystem: locking terraform.tfstate using fcntl flock | |
2019/12/13 09:18:24 [TRACE] statemgr.Filesystem: writing lock metadata to .terraform.tfstate.lock.info | |
2019/12/13 09:18:24 [TRACE] backend/local: reading remote state for workspace "default" | |
2019/12/13 09:18:24 [TRACE] statemgr.Filesystem: reading latest snapshot from terraform.tfstate | |
2019/12/13 09:18:24 [TRACE] statemgr.Filesystem: read snapshot with lineage "bb0f74d9-0d7a-d194-2bc4-4a8c6caa8491" serial 7 | |
2019/12/13 09:18:24 [TRACE] backend/local: retrieving local state snapshot for workspace "default" | |
2019/12/13 09:18:24 [TRACE] backend/local: building context for current working directory | |
2019/12/13 09:18:24 [TRACE] terraform.NewContext: starting | |
2019/12/13 09:18:24 [TRACE] terraform.NewContext: resolving provider version selections | |
2019/12/13 09:18:24 [TRACE] terraform.NewContext: loading provider schemas | |
2019/12/13 09:18:24 [TRACE] LoadSchemas: retrieving schema for provider type "aws" | |
2019-12-13T09:18:25.000-0500 [INFO] plugin: configuring client automatic mTLS | |
2019-12-13T09:18:25.023-0500 [DEBUG] plugin: starting plugin: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 args=[/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4] | |
2019-12-13T09:18:25.036-0500 [DEBUG] plugin: plugin started: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90540 | |
2019-12-13T09:18:25.036-0500 [DEBUG] plugin: waiting for RPC address: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 | |
2019-12-13T09:18:25.056-0500 [INFO] plugin.terraform-provider-aws_v2.41.0_x4: configuring server automatic mTLS: timestamp=2019-12-13T09:18:25.056-0500 | |
2019-12-13T09:18:25.081-0500 [DEBUG] plugin: using plugin: version=5 | |
2019-12-13T09:18:25.081-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: plugin address: address=/var/folders/w8/05f3x02n27x72g0mc2jy6_180000gp/T/plugin904755059 network=unix timestamp=2019-12-13T09:18:25.081-0500 | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: GetSchema | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: Close | |
2019-12-13T09:18:25.167-0500 [DEBUG] plugin: plugin process exited: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90540 | |
2019-12-13T09:18:25.167-0500 [DEBUG] plugin: plugin exited | |
2019/12/13 09:18:25 [TRACE] terraform.NewContext: complete | |
2019/12/13 09:18:25 [TRACE] backend/local: finished building terraform.Context | |
2019/12/13 09:18:25 [TRACE] backend/local: requesting interactive input, if necessary | |
2019/12/13 09:18:25 [TRACE] Context.Input: Prompting for provider arguments | |
2019/12/13 09:18:25 [TRACE] Context.Input: Provider provider.aws.somealias declared at main.tf:8,1-15 | |
2019/12/13 09:18:25 [TRACE] Context.Input: Input for provider.aws.somealias: map[string]cty.Value{} | |
2019/12/13 09:18:25 [TRACE] backend/local: running validation operation | |
2019/12/13 09:18:25 [INFO] terraform: building graph: GraphTypeValidate | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2019/12/13 09:18:25 [TRACE] ConfigTransformer: Starting for path: | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2019/12/13 09:18:25 [TRACE] OrphanResourceInstanceTransformer: adding single-instance orphan node for aws_vpc.example2 | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.StateTransformer | |
2019/12/13 09:18:25 [TRACE] StateTransformer: creating nodes for deposed instance objects only | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2019/12/13 09:18:25 [TRACE] AttachResourceConfigTransformer: attaching to "aws_vpc.example1" (*terraform.NodeValidatableResource) config from main.tf:13,1-30 | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2019/12/13 09:18:25 [TRACE] ProviderConfigTransformer: attaching to "provider.aws.somealias" provider configuration from main.tf:8,1-15 | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2019/12/13 09:18:25 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: aws_vpc.example1 is provided by provider.aws.somealias or inherited equivalent | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: aws_vpc.example2 is provided by provider.aws.somealias exactly | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example1 | |
2019/12/13 09:18:25 [DEBUG] ProviderTransformer: "aws_vpc.example1" (*terraform.NodeValidatableResource) needs provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example2 | |
2019/12/13 09:18:25 [DEBUG] ProviderTransformer: "aws_vpc.example2" (*terraform.NodeAbstractResourceInstance) needs provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2019/12/13 09:18:25 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example1 | |
2019/12/13 09:18:25 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example2 | |
2019/12/13 09:18:25 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2019/12/13 09:18:25 [DEBUG] ReferenceTransformer: "aws_vpc.example1" references: [] | |
2019/12/13 09:18:25 [DEBUG] ReferenceTransformer: "aws_vpc.example2" references: [] | |
2019/12/13 09:18:25 [DEBUG] ReferenceTransformer: "provider.aws.somealias" references: [] | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.CloseProvisionerTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.CloseProvisionerTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.RootTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.RootTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
root - terraform.graphNodeRoot | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodeValidatableResource | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
root - terraform.graphNodeRoot | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
------ | |
2019/12/13 09:18:25 [DEBUG] Starting graph walk: walkValidate | |
2019/12/13 09:18:25 [TRACE] dag/walk: updating graph | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "aws_vpc.example2" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "provider.aws.somealias (close)" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "root" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "aws_vpc.example1" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "provider.aws.somealias (close)" waiting on "aws_vpc.example2" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "root" waiting on "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "root" waiting on "provider.aws.somealias (close)" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "aws_vpc.example1" waiting on "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "aws_vpc.example2" waiting on "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "meta.count-boundary (EachMode fixup)" waiting on "aws_vpc.example1" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "meta.count-boundary (EachMode fixup)" waiting on "aws_vpc.example2" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "provider.aws.somealias (close)" waiting on "aws_vpc.example1" | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "meta.count-boundary (EachMode fixup)", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "provider.aws.somealias (close)", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "root", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "aws_vpc.example1", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "aws_vpc.example2", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: visiting "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias": starting visit (*terraform.NodeApplyableProvider) | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias": evaluating | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Entering eval tree: provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalInitProvider | |
2019-12-13T09:18:25.169-0500 [INFO] plugin: configuring client automatic mTLS | |
2019-12-13T09:18:25.191-0500 [DEBUG] plugin: starting plugin: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 args=[/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4] | |
2019-12-13T09:18:25.204-0500 [DEBUG] plugin: plugin started: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90541 | |
2019-12-13T09:18:25.204-0500 [DEBUG] plugin: waiting for RPC address: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 | |
2019-12-13T09:18:25.224-0500 [INFO] plugin.terraform-provider-aws_v2.41.0_x4: configuring server automatic mTLS: timestamp=2019-12-13T09:18:25.224-0500 | |
2019-12-13T09:18:25.250-0500 [DEBUG] plugin: using plugin: version=5 | |
2019-12-13T09:18:25.250-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: plugin address: address=/var/folders/w8/05f3x02n27x72g0mc2jy6_180000gp/T/plugin720629520 network=unix timestamp=2019-12-13T09:18:25.250-0500 | |
2019/12/13 09:18:25 [TRACE] BuiltinEvalContext: Initialized "aws" provider for provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalValidateProvider | |
2019/12/13 09:18:25 [TRACE] buildProviderConfig for provider.aws.somealias: using explicit config only | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: GetSchema | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: PrepareProviderConfig | |
2019/12/13 09:18:25 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:25 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Exiting eval tree: provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias": visit complete | |
2019/12/13 09:18:25 [TRACE] dag/walk: visiting "aws_vpc.example1" | |
2019/12/13 09:18:25 [TRACE] vertex "aws_vpc.example1": starting visit (*terraform.NodeValidatableResource) | |
2019/12/13 09:18:25 [TRACE] vertex "aws_vpc.example1": evaluating | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Entering eval tree: aws_vpc.example1 | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:25 [TRACE] dag/walk: visiting "aws_vpc.example2" | |
2019/12/13 09:18:25 [TRACE] vertex "aws_vpc.example2": starting visit (*terraform.NodeAbstractResourceInstance) | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalValidateResource | |
2019/12/13 09:18:25 [TRACE] vertex "aws_vpc.example2": visit complete | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: ValidateResourceTypeConfig | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Exiting eval tree: aws_vpc.example1 | |
2019/12/13 09:18:25 [TRACE] vertex "aws_vpc.example1": visit complete | |
2019/12/13 09:18:25 [TRACE] dag/walk: visiting "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:25 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2019/12/13 09:18:25 [TRACE] vertex "meta.count-boundary (EachMode fixup)": evaluating | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Entering eval tree: meta.count-boundary (EachMode fixup) | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalCountFixZeroOneBoundaryGlobal | |
2019/12/13 09:18:25 [TRACE] dag/walk: visiting "provider.aws.somealias (close)" | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias (close)": evaluating | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Entering eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalCloseProvider | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: Close | |
2019/12/13 09:18:25 [WARN] Not fixing up EachModes for aws_vpc.example2 because it has no config | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Exiting eval tree: meta.count-boundary (EachMode fixup) | |
2019/12/13 09:18:25 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2019-12-13T09:18:25.365-0500 [DEBUG] plugin: plugin process exited: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90541 | |
2019-12-13T09:18:25.365-0500 [DEBUG] plugin: plugin exited | |
2019/12/13 09:18:25 [TRACE] [walkValidate] Exiting eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias (close)": visit complete | |
2019/12/13 09:18:25 [TRACE] dag/walk: visiting "root" | |
2019/12/13 09:18:25 [TRACE] vertex "root": starting visit (terraform.graphNodeRoot) | |
2019/12/13 09:18:25 [TRACE] vertex "root": visit complete | |
2019/12/13 09:18:25 [INFO] backend/local: apply calling Refresh | |
2019/12/13 09:18:25 [INFO] terraform: building graph: GraphTypeRefresh | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2019/12/13 09:18:25 [TRACE] ConfigTransformer: Starting for path: | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2019/12/13 09:18:25 [TRACE] ConfigTransformer: Starting for path: | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ConfigTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2019/12/13 09:18:25 [TRACE] OrphanResourceInstanceTransformer: adding single-instance orphan node for aws_vpc.example2 | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.StateTransformer | |
2019/12/13 09:18:25 [TRACE] StateTransformer: creating nodes for deposed instance objects only | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2019/12/13 09:18:25 [TRACE] AttachResourceConfigTransformer: attaching to "aws_vpc.example1" (*terraform.NodeRefreshableManagedResource) config from main.tf:13,1-30 | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2019/12/13 09:18:25 [TRACE] ProviderConfigTransformer: attaching to "provider.aws.somealias" provider configuration from main.tf:8,1-15 | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2019/12/13 09:18:25 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: aws_vpc.example1 is provided by provider.aws.somealias or inherited equivalent | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: aws_vpc.example2 is provided by provider.aws.somealias exactly | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example1 | |
2019/12/13 09:18:25 [DEBUG] ProviderTransformer: "aws_vpc.example1" (*terraform.NodeRefreshableManagedResource) needs provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example2 | |
2019/12/13 09:18:25 [DEBUG] ProviderTransformer: "aws_vpc.example2" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2019/12/13 09:18:25 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2019/12/13 09:18:25 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example1 | |
2019/12/13 09:18:25 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example2 | |
2019/12/13 09:18:25 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2019/12/13 09:18:25 [DEBUG] ReferenceTransformer: "aws_vpc.example1" references: [] | |
2019/12/13 09:18:25 [DEBUG] ReferenceTransformer: "aws_vpc.example2" references: [] | |
2019/12/13 09:18:25 [DEBUG] ReferenceTransformer: "provider.aws.somealias" references: [] | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2019/12/13 09:18:25 [TRACE] AttachDependenciesTransformer: aws_vpc.example1 depends on [] | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.RootTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2019/12/13 09:18:25 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2019/12/13 09:18:25 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResource | |
aws_vpc.example2 - *terraform.NodeRefreshableManagedResourceInstance | |
------ | |
2019/12/13 09:18:25 [DEBUG] Starting graph walk: walkRefresh | |
2019/12/13 09:18:25 [TRACE] dag/walk: updating graph | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "provider.aws.somealias (close)" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "aws_vpc.example1" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "aws_vpc.example2" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added new vertex: "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "aws_vpc.example1" waiting on "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "aws_vpc.example2" waiting on "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "provider.aws.somealias (close)" waiting on "aws_vpc.example1" | |
2019/12/13 09:18:25 [TRACE] dag/walk: added edge: "provider.aws.somealias (close)" waiting on "aws_vpc.example2" | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "aws_vpc.example1", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "aws_vpc.example2", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: dependencies changed for "provider.aws.somealias (close)", sending new deps | |
2019/12/13 09:18:25 [TRACE] dag/walk: visiting "provider.aws.somealias" | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias": starting visit (*terraform.NodeApplyableProvider) | |
2019/12/13 09:18:25 [TRACE] vertex "provider.aws.somealias": evaluating | |
2019/12/13 09:18:25 [TRACE] [walkRefresh] Entering eval tree: provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalInitProvider | |
2019-12-13T09:18:25.366-0500 [INFO] plugin: configuring client automatic mTLS | |
2019-12-13T09:18:25.387-0500 [DEBUG] plugin: starting plugin: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 args=[/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4] | |
2019-12-13T09:18:25.400-0500 [DEBUG] plugin: plugin started: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90542 | |
2019-12-13T09:18:25.400-0500 [DEBUG] plugin: waiting for RPC address: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 | |
2019-12-13T09:18:25.419-0500 [INFO] plugin.terraform-provider-aws_v2.41.0_x4: configuring server automatic mTLS: timestamp=2019-12-13T09:18:25.418-0500 | |
2019-12-13T09:18:25.444-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: plugin address: address=/var/folders/w8/05f3x02n27x72g0mc2jy6_180000gp/T/plugin069444741 network=unix timestamp=2019-12-13T09:18:25.444-0500 | |
2019-12-13T09:18:25.444-0500 [DEBUG] plugin: using plugin: version=5 | |
2019/12/13 09:18:25 [TRACE] BuiltinEvalContext: Initialized "aws" provider for provider.aws.somealias | |
2019/12/13 09:18:25 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:25 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:25 [TRACE] <root>: eval: *terraform.EvalConfigProvider | |
2019/12/13 09:18:25 [TRACE] buildProviderConfig for provider.aws.somealias: using explicit config only | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: GetSchema | |
2019/12/13 09:18:25 [TRACE] GRPCProvider: Configure | |
2019-12-13T09:18:25.527-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:25 [INFO] No assume_role block read from configuration | |
2019-12-13T09:18:25.527-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:25 [INFO] Building AWS auth structure | |
2019-12-13T09:18:25.527-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:25 [INFO] Setting AWS metadata API timeout to 100ms | |
2019-12-13T09:18:26.191-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [INFO] AWS Auth provider used: "SharedCredentialsProvider" | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] Trying to get account information via sts:GetCallerIdentity | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: sts.amazonaws.com | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 43 | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=e135dbb47b4d376d87aaa48af36da094ad359867afad93389c001b2bf409119b | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=GetCallerIdentity&Version=2011-06-15 | |
2019-12-13T09:18:26.192-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 402 | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:25 GMT | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amzn-Requestid: 6daac1c0-1db3-11ea-90e8-69ca3ceb60da | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <GetCallerIdentityResult> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Arn>arn:aws:iam::--OMITTED--:user/bflad</Arn> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <UserId>AIDASXIXB4ZJ7Y7PKVIJ2</UserId> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Account>--OMITTED--</Account> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResult> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ResponseMetadata> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <RequestId>6daac1c0-1db3-11ea-90e8-69ca3ceb60da</RequestId> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ResponseMetadata> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResponse> | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] Trying to get account information via sts:GetCallerIdentity | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: sts.amazonaws.com | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 43 | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=e135dbb47b4d376d87aaa48af36da094ad359867afad93389c001b2bf409119b | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=GetCallerIdentity&Version=2011-06-15 | |
2019-12-13T09:18:26.467-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 402 | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:25 GMT | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amzn-Requestid: 6db39aad-1db3-11ea-a540-1ffba9665041 | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <GetCallerIdentityResult> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Arn>arn:aws:iam::--OMITTED--:user/bflad</Arn> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <UserId>AIDASXIXB4ZJ7Y7PKVIJ2</UserId> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Account>--OMITTED--</Account> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResult> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ResponseMetadata> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <RequestId>6db39aad-1db3-11ea-a540-1ffba9665041</RequestId> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ResponseMetadata> | |
2019-12-13T09:18:26.524-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResponse> | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details: | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 87 | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=7115127995424a1aa3edf38908b2ec1d815a188ff794cf41fd4f978f6751b512 | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15 | |
2019-12-13T09:18:26.526-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details: | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 540 | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>0ea3e928-8c06-4bd5-9f73-3ce794b57b5f</requestId> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <accountAttributeSet> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeName>supported-platforms</attributeName> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeValueSet> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeValue>VPC</attributeValue> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </attributeValueSet> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </accountAttributeSet> | |
2019-12-13T09:18:26.673-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeAccountAttributesResponse> | |
2019/12/13 09:18:26 [TRACE] [walkRefresh] Exiting eval tree: provider.aws.somealias | |
2019/12/13 09:18:26 [TRACE] vertex "provider.aws.somealias": visit complete | |
2019/12/13 09:18:26 [TRACE] dag/walk: visiting "aws_vpc.example1" | |
2019/12/13 09:18:26 [TRACE] vertex "aws_vpc.example1": starting visit (*terraform.NodeRefreshableManagedResource) | |
2019/12/13 09:18:26 [TRACE] dag/walk: visiting "aws_vpc.example2" | |
2019/12/13 09:18:26 [TRACE] vertex "aws_vpc.example1": expanding dynamic subgraph | |
2019/12/13 09:18:26 [TRACE] vertex "aws_vpc.example2": starting visit (*terraform.NodeRefreshableManagedResourceInstance) | |
2019/12/13 09:18:26 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2019/12/13 09:18:26 [TRACE] NodeRefreshableManagedResourceInstance: aws_vpc.example2 will be refreshed | |
2019/12/13 09:18:26 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodeRefreshableManagedResourceInstance | |
------ | |
2019/12/13 09:18:26 [TRACE] Executing graph transform *terraform.OrphanResourceCountTransformer | |
2019/12/13 09:18:26 [TRACE] vertex "aws_vpc.example2": evaluating | |
2019/12/13 09:18:26 [TRACE] Completed graph transform *terraform.OrphanResourceCountTransformer (no changes) | |
2019/12/13 09:18:26 [TRACE] [walkRefresh] Entering eval tree: aws_vpc.example2 | |
2019/12/13 09:18:26 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalReadState | |
2019/12/13 09:18:26 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2019/12/13 09:18:26 [TRACE] EvalReadState: reading state for aws_vpc.example2 | |
2019/12/13 09:18:26 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2019/12/13 09:18:26 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2019/12/13 09:18:26 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2019/12/13 09:18:26 [DEBUG] ReferenceTransformer: "aws_vpc.example1" references: [] | |
2019/12/13 09:18:26 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2019/12/13 09:18:26 [TRACE] Executing graph transform *terraform.RootTransformer | |
2019/12/13 09:18:26 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2019/12/13 09:18:26 [TRACE] vertex "aws_vpc.example1": entering dynamic subgraph | |
2019/12/13 09:18:26 [TRACE] dag/walk: updating graph | |
2019/12/13 09:18:26 [TRACE] dag/walk: added new vertex: "aws_vpc.example1" | |
2019/12/13 09:18:26 [TRACE] dag/walk: visiting "aws_vpc.example1" | |
2019/12/13 09:18:26 [TRACE] vertex "aws_vpc.example1": starting visit (*terraform.NodeRefreshableManagedResourceInstance) | |
2019/12/13 09:18:26 [TRACE] NodeRefreshableManagedResourceInstance: aws_vpc.example1 will be refreshed | |
2019/12/13 09:18:26 [TRACE] vertex "aws_vpc.example1": evaluating | |
2019/12/13 09:18:26 [TRACE] [walkRefresh] Entering eval tree: aws_vpc.example1 | |
2019/12/13 09:18:26 [TRACE] UpgradeResourceState: schema version of aws_vpc.example2 is still 1; calling provider "registry.terraform.io/-/aws" for any other minor fixups | |
2019/12/13 09:18:26 [TRACE] GRPCProvider: UpgradeResourceState | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalReadState | |
2019/12/13 09:18:26 [TRACE] EvalReadState: reading state for aws_vpc.example1 | |
2019/12/13 09:18:26 [TRACE] UpgradeResourceState: schema version of aws_vpc.example1 is still 1; calling provider "registry.terraform.io/-/aws" for any other minor fixups | |
2019/12/13 09:18:26 [TRACE] GRPCProvider: UpgradeResourceState | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalRefreshDependencies | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalRefreshDependencies | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalRefresh | |
2019/12/13 09:18:26 [TRACE] <root>: eval: *terraform.EvalRefresh | |
2019/12/13 09:18:26 [TRACE] GRPCProvider: ReadResource | |
2019/12/13 09:18:26 [TRACE] GRPCProvider: ReadResource | |
aws_vpc.example2: Refreshing state... [id=vpc-0d30c836648153f3d] | |
aws_vpc.example1: Refreshing state... [id=vpc-0c291effaf19b18bf] | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcs Details: | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 68 | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=c7e76b6982d06f088c91f6313913add5ec00c516a50c1c9cdc848c89e97c2993 | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcs&Version=2016-11-15&VpcId.1=vpc-0d30c836648153f3d | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcs Details: | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 68 | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=ddf83297b4ffd3217a3c808ccb211813fb1d4e7482b49c11c454cd421e94962c | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcs&Version=2016-11-15&VpcId.1=vpc-0c291effaf19b18bf | |
2019-12-13T09:18:26.676-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcs Details: | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 974 | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeVpcsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>3306b96d-3a1c-4463-92de-5e403e20f55d</requestId> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcSet> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0c291effaf19b18bf</vpcId> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>available</state> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>10.0.0.0/16</cidrBlock> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlockAssociationSet> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>10.0.0.0/16</cidrBlock> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationId>vpc-cidr-assoc-09f03f91ea8260ed9</associationId> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlockState> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>associated</state> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </cidrBlockState> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </cidrBlockAssociationSet> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <dhcpOptionsId>dopt-7bfe0a12</dhcpOptionsId> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <instanceTenancy>default</instanceTenancy> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <isDefault>false</isDefault> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </vpcSet> | |
2019-12-13T09:18:26.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeVpcsResponse> | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 101 | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=1aa1041fbaa7de32b3a494e6f69f1d80f4ff095a7f37d57410d21e877dee53f0 | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcAttribute&Attribute=enableDnsSupport&Version=2016-11-15&VpcId=vpc-0c291effaf19b18bf | |
2019-12-13T09:18:26.819-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcs Details: | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 974 | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeVpcsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>71bbbe2f-770f-47b3-9b5c-96d62a65135c</requestId> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcSet> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0d30c836648153f3d</vpcId> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>available</state> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>10.1.0.0/16</cidrBlock> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlockAssociationSet> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>10.1.0.0/16</cidrBlock> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationId>vpc-cidr-assoc-0323951d3530b0f04</associationId> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlockState> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>associated</state> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </cidrBlockState> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </cidrBlockAssociationSet> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <dhcpOptionsId>dopt-7bfe0a12</dhcpOptionsId> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <instanceTenancy>default</instanceTenancy> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <isDefault>false</isDefault> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </vpcSet> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeVpcsResponse> | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 101 | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=32f432a7ede6334dc61f96e1cc7fd8c344d07f94ec5dc3af93097a56c291ca49 | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcAttribute&Attribute=enableDnsSupport&Version=2016-11-15&VpcId=vpc-0d30c836648153f3d | |
2019-12-13T09:18:26.853-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 330 | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>6bc617d7-9508-4fa6-8bae-98fdf95e95ee</requestId> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0c291effaf19b18bf</vpcId> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <enableDnsSupport> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <value>true</value> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </enableDnsSupport> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeVpcAttributeResponse> | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 103 | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=d8e54907bebc86fdc61c187a596384bbeb0c146bfab1f2f87c2db9874069da45 | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcAttribute&Attribute=enableDnsHostnames&Version=2016-11-15&VpcId=vpc-0c291effaf19b18bf | |
2019-12-13T09:18:26.954-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 330 | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>2ed361a9-6d86-4b02-b61f-5631054e742b</requestId> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0d30c836648153f3d</vpcId> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <enableDnsSupport> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <value>true</value> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </enableDnsSupport> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeVpcAttributeResponse> | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:26 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 103 | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=a245f471bc92f087fa6476ba1dbeac8015bace8c8b92bac9644a3216c3107d1e | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141826Z | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcAttribute&Attribute=enableDnsHostnames&Version=2016-11-15&VpcId=vpc-0d30c836648153f3d | |
2019-12-13T09:18:26.995-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 335 | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>f6be546a-9296-4dc2-ac1f-8e3aa0b62eeb</requestId> | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0c291effaf19b18bf</vpcId> | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <enableDnsHostnames> | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <value>false</value> | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </enableDnsHostnames> | |
2019-12-13T09:18:27.071-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeVpcAttributeResponse> | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcClassicLink Details: | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 78 | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=41e00f773563d0eedb45b1eeb4c7e114b9f699b632dea7025018da66fc333b2c | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcClassicLink&Version=2016-11-15&VpcId.1=vpc-0c291effaf19b18bf | |
2019-12-13T09:18:27.072-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcAttribute Details: | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 335 | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>15c2c04f-03e4-4129-8f1e-b31bcc433653</requestId> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0d30c836648153f3d</vpcId> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <enableDnsHostnames> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <value>false</value> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </enableDnsHostnames> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeVpcAttributeResponse> | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcClassicLink Details: | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 78 | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=d053c07611d7334940aebb108d68cd0db4865a26c0453562b7605580c275e75e | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcClassicLink&Version=2016-11-15&VpcId.1=vpc-0d30c836648153f3d | |
2019-12-13T09:18:27.109-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcClassicLink Details: | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 400 Bad Request | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Transfer-Encoding: chunked | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:27 GMT | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Response><Errors><Error><Code>UnsupportedOperation</Code><Message>The functionality you requested is not available in this region.</Message></Error></Errors><RequestID>9d57658a-c2c3-44b7-9b46-d17211d02215</RequestID></Response> | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Validate Response ec2/DescribeVpcClassicLink failed, attempt 0/25, error UnsupportedOperation: The functionality you requested is not available in this region. | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: status code: 400, request id: 9d57658a-c2c3-44b7-9b46-d17211d02215 | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [WARN] VPC Classic Link is not supported in this region | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcClassicLinkDnsSupport Details: | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 89 | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=bb6214d2c5a4bb390a37babcb3b10851d7085c080585ea6ccee16dd2eec04f87 | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcClassicLinkDnsSupport&Version=2016-11-15&VpcIds.1=vpc-0c291effaf19b18bf | |
2019-12-13T09:18:27.168-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcClassicLink Details: | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 400 Bad Request | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Transfer-Encoding: chunked | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Response><Errors><Error><Code>UnsupportedOperation</Code><Message>The functionality you requested is not available in this region.</Message></Error></Errors><RequestID>27c3e2ee-4cde-47d0-811c-58db63ce8abb</RequestID></Response> | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Validate Response ec2/DescribeVpcClassicLink failed, attempt 0/25, error UnsupportedOperation: The functionality you requested is not available in this region. | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: status code: 400, request id: 27c3e2ee-4cde-47d0-811c-58db63ce8abb | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [WARN] VPC Classic Link is not supported in this region | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcClassicLinkDnsSupport Details: | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 89 | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=477193244321075e5140c6c810eac424fb6346634d1f194ee1bd0e13a04bd6fc | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeVpcClassicLinkDnsSupport&Version=2016-11-15&VpcIds.1=vpc-0d30c836648153f3d | |
2019-12-13T09:18:27.212-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcClassicLinkDnsSupport Details: | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 400 Bad Request | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Transfer-Encoding: chunked | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Response><Errors><Error><Code>UnsupportedOperation</Code><Message>The functionality you requested is not available in this region.</Message></Error></Errors><RequestID>9c4a1d35-4f29-4dba-bac9-d06135139a68</RequestID></Response> | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Validate Response ec2/DescribeVpcClassicLinkDnsSupport failed, attempt 0/25, error UnsupportedOperation: The functionality you requested is not available in this region. | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: status code: 400, request id: 9c4a1d35-4f29-4dba-bac9-d06135139a68 | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [WARN] VPC Classic Link DNS Support is not supported in this region | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 158 | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=74702074d96778893d478ae9fb170411f19dd03e43322972112cea2bc7d69e0c | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeRouteTables&Filter.1.Name=association.main&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0c291effaf19b18bf&Version=2016-11-15 | |
2019-12-13T09:18:27.268-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcClassicLinkDnsSupport Details: | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 400 Bad Request | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Transfer-Encoding: chunked | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Response><Errors><Error><Code>UnsupportedOperation</Code><Message>The functionality you requested is not available in this region.</Message></Error></Errors><RequestID>fa3b38b2-9a0f-424c-8f09-58a070d11e4f</RequestID></Response> | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Validate Response ec2/DescribeVpcClassicLinkDnsSupport failed, attempt 0/25, error UnsupportedOperation: The functionality you requested is not available in this region. | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: status code: 400, request id: fa3b38b2-9a0f-424c-8f09-58a070d11e4f | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [WARN] VPC Classic Link DNS Support is not supported in this region | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 158 | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=9ad6c30afdc24155bd72b352fcf926a6a8f0e418e30d917be9e2f7390ebc5e53 | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeRouteTables&Filter.1.Name=association.main&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0d30c836648153f3d&Version=2016-11-15 | |
2019-12-13T09:18:27.319-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1253 | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeRouteTablesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>00c25b60-5d95-4912-9332-fd67143c00e8</requestId> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableSet> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0fc3643de788060d5</routeTableId> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0c291effaf19b18bf</vpcId> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeSet> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <destinationCidrBlock>10.0.0.0/16</destinationCidrBlock> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <gatewayId>local</gatewayId> | |
2019-12-13T09:18:27.411-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>active</state> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <origin>CreateRouteTable</origin> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeSet> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationSet> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableAssociationId>rtbassoc-0d3f46fccd016f8e5</routeTableAssociationId> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0fc3643de788060d5</routeTableId> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <main>true</main> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationState> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>associated</state> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationState> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationSet> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <propagatingVgwSet/> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <tagSet/> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeTableSet> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeRouteTablesResponse> | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeNetworkAcls Details: | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 149 | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=6ea40865a916284df45bd0bd03e352b534de0e0df61e458f7ae80a560daae9fa | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeNetworkAcls&Filter.1.Name=default&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0c291effaf19b18bf&Version=2016-11-15 | |
2019-12-13T09:18:27.412-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1253 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:27 GMT | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeRouteTablesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>c4705203-dc46-49bf-bdb4-ea7fd07ebd42</requestId> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableSet> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0ef6855b4c3ee6742</routeTableId> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0d30c836648153f3d</vpcId> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeSet> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <destinationCidrBlock>10.1.0.0/16</destinationCidrBlock> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <gatewayId>local</gatewayId> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>active</state> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <origin>CreateRouteTable</origin> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeSet> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationSet> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableAssociationId>rtbassoc-0474d9dd5750d53a1</routeTableAssociationId> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0ef6855b4c3ee6742</routeTableId> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <main>true</main> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationState> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>associated</state> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationState> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationSet> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <propagatingVgwSet/> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <tagSet/> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeTableSet> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeRouteTablesResponse> | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeNetworkAcls Details: | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 149 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=405e8d28ab35407a9b2dac91395fcb25b0022d4d34cfed67bcc83400d745f650 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeNetworkAcls&Filter.1.Name=default&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0d30c836648153f3d&Version=2016-11-15 | |
2019-12-13T09:18:27.457-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeNetworkAcls Details: | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1723 | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeNetworkAclsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>a81ae3c0-31ca-4024-beb6-c04f2f2cd8a4</requestId> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <networkAclSet> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <networkAclId>acl-0eb93cc0f021d656b</networkAclId> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0c291effaf19b18bf</vpcId> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <default>true</default> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <entrySet> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>100</ruleNumber> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>allow</ruleAction> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>true</egress> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>32767</ruleNumber> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>deny</ruleAction> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>true</egress> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>100</ruleNumber> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>allow</ruleAction> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>false</egress> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.557-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>32767</ruleNumber> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>deny</ruleAction> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>false</egress> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </entrySet> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationSet/> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <tagSet/> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </networkAclSet> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeNetworkAclsResponse> | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeSecurityGroups Details: | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 158 | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=e8def2daf4e856fe43adede370506044caf2a70427e37c3e6f8f4b362b6f93ea | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeSecurityGroups&Filter.1.Name=group-name&Filter.1.Value.1=default&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0c291effaf19b18bf&Version=2016-11-15 | |
2019-12-13T09:18:27.558-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeNetworkAcls Details: | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1723 | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeNetworkAclsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>82ad1e8f-bab4-4ee2-8048-192968017aa0</requestId> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <networkAclSet> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <networkAclId>acl-0ff31c0e189868202</networkAclId> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0d30c836648153f3d</vpcId> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <default>true</default> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <entrySet> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>100</ruleNumber> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>allow</ruleAction> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>true</egress> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>32767</ruleNumber> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>deny</ruleAction> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>true</egress> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>100</ruleNumber> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>allow</ruleAction> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>false</egress> | |
2019-12-13T09:18:27.600-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleNumber>32767</ruleNumber> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <protocol>-1</protocol> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ruleAction>deny</ruleAction> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <egress>false</egress> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrBlock>0.0.0.0/0</cidrBlock> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </entrySet> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationSet/> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <tagSet/> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </networkAclSet> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeNetworkAclsResponse> | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeSecurityGroups Details: | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 158 | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=93c924eed18555d7fcac5a38fc829be0fab302d705d953b3fd860397fb2c05f2 | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeSecurityGroups&Filter.1.Name=group-name&Filter.1.Value.1=default&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0d30c836648153f3d&Version=2016-11-15 | |
2019-12-13T09:18:27.601-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeSecurityGroups Details: | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1511 | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:26 GMT | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeSecurityGroupsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>abe66afe-f5af-40c5-9486-9c3bba549f1b</requestId> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <securityGroupInfo> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupId>sg-095173b60beda2316</groupId> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupName>default</groupName> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupDescription>default VPC security group</groupDescription> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0c291effaf19b18bf</vpcId> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipPermissions> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipProtocol>-1</ipProtocol> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groups> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <userId>--OMITTED--</userId> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupId>sg-095173b60beda2316</groupId> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </groups> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipRanges/> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipv6Ranges/> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <prefixListIds/> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ipPermissions> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipPermissionsEgress> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipProtocol>-1</ipProtocol> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groups/> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipRanges> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrIp>0.0.0.0/0</cidrIp> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ipRanges> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipv6Ranges/> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <prefixListIds/> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ipPermissionsEgress> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </securityGroupInfo> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeSecurityGroupsResponse> | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 158 | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=74702074d96778893d478ae9fb170411f19dd03e43322972112cea2bc7d69e0c | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeRouteTables&Filter.1.Name=association.main&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0c291effaf19b18bf&Version=2016-11-15 | |
2019-12-13T09:18:27.697-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeSecurityGroups Details: | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1511 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:27 GMT | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeSecurityGroupsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>20399b76-eca2-44ab-8a41-64b82d5b1326</requestId> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <securityGroupInfo> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupId>sg-0824c74110bcca8dc</groupId> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupName>default</groupName> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupDescription>default VPC security group</groupDescription> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0d30c836648153f3d</vpcId> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipPermissions> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipProtocol>-1</ipProtocol> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groups> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <userId>--OMITTED--</userId> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groupId>sg-0824c74110bcca8dc</groupId> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </groups> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipRanges/> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipv6Ranges/> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <prefixListIds/> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ipPermissions> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipPermissionsEgress> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipProtocol>-1</ipProtocol> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <groups/> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipRanges> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <cidrIp>0.0.0.0/0</cidrIp> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ipRanges> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ipv6Ranges/> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <prefixListIds/> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ipPermissionsEgress> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </securityGroupInfo> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeSecurityGroupsResponse> | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 158 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=9ad6c30afdc24155bd72b352fcf926a6a8f0e418e30d917be9e2f7390ebc5e53 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141827Z | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeRouteTables&Filter.1.Name=association.main&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-0d30c836648153f3d&Version=2016-11-15 | |
2019-12-13T09:18:27.750-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1253 | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:27 GMT | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeRouteTablesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>148200f4-4d20-4095-9c18-f79d3f57fe9c</requestId> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableSet> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0fc3643de788060d5</routeTableId> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0c291effaf19b18bf</vpcId> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeSet> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <destinationCidrBlock>10.0.0.0/16</destinationCidrBlock> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <gatewayId>local</gatewayId> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>active</state> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <origin>CreateRouteTable</origin> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeSet> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationSet> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableAssociationId>rtbassoc-0d3f46fccd016f8e5</routeTableAssociationId> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0fc3643de788060d5</routeTableId> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <main>true</main> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationState> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>associated</state> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationState> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationSet> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <propagatingVgwSet/> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <tagSet/> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeTableSet> | |
2019-12-13T09:18:27.818-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeRouteTablesResponse> | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalWriteState | |
2019/12/13 09:18:27 [TRACE] EvalWriteState: recording 0 dependencies for aws_vpc.example1 | |
2019/12/13 09:18:27 [TRACE] EvalWriteState: writing current state object for aws_vpc.example1 | |
2019/12/13 09:18:27 [TRACE] [walkRefresh] Exiting eval tree: aws_vpc.example1 | |
2019/12/13 09:18:27 [TRACE] vertex "aws_vpc.example1": visit complete | |
2019/12/13 09:18:27 [TRACE] vertex "aws_vpc.example1": dynamic subgraph completed successfully | |
2019/12/13 09:18:27 [TRACE] vertex "aws_vpc.example1": visit complete | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeRouteTables Details: | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 1253 | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:27 GMT | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:27 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeRouteTablesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>3b191cd9-0ff6-4d0b-a27a-5dfa345ddaf0</requestId> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableSet> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0ef6855b4c3ee6742</routeTableId> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <vpcId>vpc-0d30c836648153f3d</vpcId> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ownerId>--OMITTED--</ownerId> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeSet> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <destinationCidrBlock>10.1.0.0/16</destinationCidrBlock> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <gatewayId>local</gatewayId> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>active</state> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <origin>CreateRouteTable</origin> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeSet> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationSet> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableAssociationId>rtbassoc-0474d9dd5750d53a1</routeTableAssociationId> | |
2019-12-13T09:18:27.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <routeTableId>rtb-0ef6855b4c3ee6742</routeTableId> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <main>true</main> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <associationState> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <state>associated</state> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationState> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </associationSet> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <propagatingVgwSet/> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <tagSet/> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </routeTableSet> | |
2019-12-13T09:18:27.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeRouteTablesResponse> | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalWriteState | |
2019/12/13 09:18:27 [TRACE] EvalWriteState: recording 0 dependencies for aws_vpc.example2 | |
2019/12/13 09:18:27 [TRACE] EvalWriteState: writing current state object for aws_vpc.example2 | |
2019/12/13 09:18:27 [TRACE] [walkRefresh] Exiting eval tree: aws_vpc.example2 | |
2019/12/13 09:18:27 [TRACE] vertex "aws_vpc.example2": visit complete | |
2019/12/13 09:18:27 [TRACE] dag/walk: visiting "provider.aws.somealias (close)" | |
2019/12/13 09:18:27 [TRACE] vertex "provider.aws.somealias (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2019/12/13 09:18:27 [TRACE] vertex "provider.aws.somealias (close)": evaluating | |
2019/12/13 09:18:27 [TRACE] [walkRefresh] Entering eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalCloseProvider | |
2019/12/13 09:18:27 [TRACE] GRPCProvider: Close | |
2019-12-13T09:18:27.878-0500 [DEBUG] plugin: plugin process exited: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90542 | |
2019-12-13T09:18:27.878-0500 [DEBUG] plugin: plugin exited | |
2019/12/13 09:18:27 [TRACE] [walkRefresh] Exiting eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:27 [TRACE] vertex "provider.aws.somealias (close)": visit complete | |
2019/12/13 09:18:27 [INFO] backend/local: apply calling Plan | |
2019/12/13 09:18:27 [INFO] terraform: building graph: GraphTypePlan | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2019/12/13 09:18:27 [TRACE] ConfigTransformer: Starting for path: | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
------ | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2019/12/13 09:18:27 [TRACE] OrphanResourceInstanceTransformer: adding single-instance orphan node for aws_vpc.example2 | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
------ | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.StateTransformer | |
2019/12/13 09:18:27 [TRACE] StateTransformer: creating nodes for deposed instance objects only | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2019/12/13 09:18:27 [TRACE] AttachResourceConfigTransformer: attaching to "aws_vpc.example1" (*terraform.NodePlannableResource) config from main.tf:13,1-30 | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2019/12/13 09:18:27 [TRACE] ProviderConfigTransformer: attaching to "provider.aws.somealias" provider configuration from main.tf:8,1-15 | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2019/12/13 09:18:27 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:27 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2019/12/13 09:18:27 [TRACE] ProviderTransformer: aws_vpc.example1 is provided by provider.aws.somealias or inherited equivalent | |
2019/12/13 09:18:27 [TRACE] ProviderTransformer: aws_vpc.example2 (orphan) is provided by provider.aws.somealias exactly | |
2019/12/13 09:18:27 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example1 | |
2019/12/13 09:18:27 [DEBUG] ProviderTransformer: "aws_vpc.example1" (*terraform.NodePlannableResource) needs provider.aws.somealias | |
2019/12/13 09:18:27 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example2 (orphan) | |
2019/12/13 09:18:27 [DEBUG] ProviderTransformer: "aws_vpc.example2 (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.aws.somealias | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2019/12/13 09:18:27 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2019/12/13 09:18:27 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider.aws.somealias | |
2019/12/13 09:18:27 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example1 | |
2019/12/13 09:18:27 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example2 (orphan) | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2019/12/13 09:18:27 [DEBUG] ReferenceTransformer: "aws_vpc.example1" references: [] | |
2019/12/13 09:18:27 [DEBUG] ReferenceTransformer: "aws_vpc.example2 (orphan)" references: [] | |
2019/12/13 09:18:27 [DEBUG] ReferenceTransformer: "provider.aws.somealias" references: [] | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2019/12/13 09:18:27 [TRACE] ForcedCBDTransformer: "aws_vpc.example1" (*terraform.NodePlannableResource) has no CBD descendent, so skipping | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.CloseProvisionerTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.CloseProvisionerTransformer (no changes) | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.RootTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.RootTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
root - terraform.graphNodeRoot | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
------ | |
2019/12/13 09:18:27 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2019/12/13 09:18:27 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example1 - *terraform.NodePlannableResource | |
aws_vpc.example2 (orphan) - *terraform.NodePlannableResourceInstanceOrphan | |
root - terraform.graphNodeRoot | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
------ | |
2019/12/13 09:18:27 [DEBUG] Starting graph walk: walkPlan | |
2019/12/13 09:18:27 [TRACE] dag/walk: updating graph | |
2019/12/13 09:18:27 [TRACE] dag/walk: added new vertex: "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added new vertex: "provider.aws.somealias (close)" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added new vertex: "root" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added new vertex: "aws_vpc.example1" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added new vertex: "aws_vpc.example2 (orphan)" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added new vertex: "provider.aws.somealias" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "provider.aws.somealias (close)" waiting on "aws_vpc.example2 (orphan)" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "provider.aws.somealias (close)" waiting on "aws_vpc.example1" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "root" waiting on "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "aws_vpc.example1" waiting on "provider.aws.somealias" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "aws_vpc.example2 (orphan)" waiting on "provider.aws.somealias" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "meta.count-boundary (EachMode fixup)" waiting on "aws_vpc.example2 (orphan)" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "root" waiting on "provider.aws.somealias (close)" | |
2019/12/13 09:18:27 [TRACE] dag/walk: added edge: "meta.count-boundary (EachMode fixup)" waiting on "aws_vpc.example1" | |
2019/12/13 09:18:27 [TRACE] dag/walk: dependencies changed for "provider.aws.somealias (close)", sending new deps | |
2019/12/13 09:18:27 [TRACE] dag/walk: dependencies changed for "root", sending new deps | |
2019/12/13 09:18:27 [TRACE] dag/walk: dependencies changed for "aws_vpc.example1", sending new deps | |
2019/12/13 09:18:27 [TRACE] dag/walk: dependencies changed for "aws_vpc.example2 (orphan)", sending new deps | |
2019/12/13 09:18:27 [TRACE] dag/walk: dependencies changed for "meta.count-boundary (EachMode fixup)", sending new deps | |
2019/12/13 09:18:27 [TRACE] dag/walk: visiting "provider.aws.somealias" | |
2019/12/13 09:18:27 [TRACE] vertex "provider.aws.somealias": starting visit (*terraform.NodeApplyableProvider) | |
2019/12/13 09:18:27 [TRACE] vertex "provider.aws.somealias": evaluating | |
2019/12/13 09:18:27 [TRACE] [walkPlan] Entering eval tree: provider.aws.somealias | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalInitProvider | |
2019-12-13T09:18:27.880-0500 [INFO] plugin: configuring client automatic mTLS | |
2019-12-13T09:18:27.906-0500 [DEBUG] plugin: starting plugin: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 args=[/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4] | |
2019-12-13T09:18:27.921-0500 [DEBUG] plugin: plugin started: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90549 | |
2019-12-13T09:18:27.921-0500 [DEBUG] plugin: waiting for RPC address: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 | |
2019-12-13T09:18:27.944-0500 [INFO] plugin.terraform-provider-aws_v2.41.0_x4: configuring server automatic mTLS: timestamp=2019-12-13T09:18:27.944-0500 | |
2019-12-13T09:18:27.972-0500 [DEBUG] plugin: using plugin: version=5 | |
2019-12-13T09:18:27.972-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: plugin address: address=/var/folders/w8/05f3x02n27x72g0mc2jy6_180000gp/T/plugin657889736 network=unix timestamp=2019-12-13T09:18:27.972-0500 | |
2019/12/13 09:18:27 [TRACE] BuiltinEvalContext: Initialized "aws" provider for provider.aws.somealias | |
2019/12/13 09:18:27 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:27 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:27 [TRACE] <root>: eval: *terraform.EvalConfigProvider | |
2019/12/13 09:18:27 [TRACE] buildProviderConfig for provider.aws.somealias: using explicit config only | |
2019/12/13 09:18:27 [TRACE] GRPCProvider: GetSchema | |
2019/12/13 09:18:28 [TRACE] GRPCProvider: Configure | |
2019-12-13T09:18:28.053-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [INFO] No assume_role block read from configuration | |
2019-12-13T09:18:28.053-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [INFO] Building AWS auth structure | |
2019-12-13T09:18:28.053-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [INFO] Setting AWS metadata API timeout to 100ms | |
2019-12-13T09:18:28.724-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [INFO] AWS Auth provider used: "SharedCredentialsProvider" | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] Trying to get account information via sts:GetCallerIdentity | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: sts.amazonaws.com | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 43 | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=30e2745850a0a7074d7fbcd7c6e5b52dae265f9f4e8ff519a2db9e5054b7b878 | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141828Z | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=GetCallerIdentity&Version=2011-06-15 | |
2019-12-13T09:18:28.725-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 402 | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:28 GMT | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amzn-Requestid: 6f1b68d7-1db3-11ea-abd3-632957228d20 | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <GetCallerIdentityResult> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Arn>arn:aws:iam::--OMITTED--:user/bflad</Arn> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <UserId>AIDASXIXB4ZJ7Y7PKVIJ2</UserId> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Account>--OMITTED--</Account> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResult> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ResponseMetadata> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <RequestId>6f1b68d7-1db3-11ea-abd3-632957228d20</RequestId> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ResponseMetadata> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResponse> | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] Trying to get account information via sts:GetCallerIdentity | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: sts.amazonaws.com | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 43 | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=30e2745850a0a7074d7fbcd7c6e5b52dae265f9f4e8ff519a2db9e5054b7b878 | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141828Z | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=GetCallerIdentity&Version=2011-06-15 | |
2019-12-13T09:18:28.883-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 402 | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:28 GMT | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amzn-Requestid: 6f2553e4-1db3-11ea-8c37-21ce76f82152 | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <GetCallerIdentityResult> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Arn>arn:aws:iam::--OMITTED--:user/bflad</Arn> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <UserId>AIDASXIXB4ZJ7Y7PKVIJ2</UserId> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Account>--OMITTED--</Account> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResult> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ResponseMetadata> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <RequestId>6f2553e4-1db3-11ea-8c37-21ce76f82152</RequestId> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ResponseMetadata> | |
2019-12-13T09:18:28.949-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResponse> | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:28 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details: | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 87 | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=1fc6b62a1736eba5acdf60a272dea64cfc698f3545994e6c9bb0d6e5c08d76d5 | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141828Z | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15 | |
2019-12-13T09:18:28.951-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details: | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 540 | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:28 GMT | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>ba5eed6b-f5c8-45e4-b72b-a040da7a142f</requestId> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <accountAttributeSet> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeName>supported-platforms</attributeName> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeValueSet> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeValue>VPC</attributeValue> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </attributeValueSet> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </accountAttributeSet> | |
2019-12-13T09:18:29.070-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeAccountAttributesResponse> | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Exiting eval tree: provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws.somealias": visit complete | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "aws_vpc.example1" | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "aws_vpc.example2 (orphan)" | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": starting visit (*terraform.NodePlannableResource) | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example2 (orphan)": starting visit (*terraform.NodePlannableResourceInstanceOrphan) | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": evaluating | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Entering eval tree: aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example2 (orphan)": evaluating | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalWriteResourceState | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Entering eval tree: aws_vpc.example2 (orphan) | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Exiting eval tree: aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": expanding dynamic subgraph | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalReadState | |
2019/12/13 09:18:29 [TRACE] EvalReadState: reading state for aws_vpc.example2 | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_vpc.example1 - *terraform.NodePlannableResourceInstance | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.OrphanResourceCountTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.OrphanResourceCountTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "aws_vpc.example1" references: [] | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.RootTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": entering dynamic subgraph | |
2019/12/13 09:18:29 [TRACE] dag/walk: updating graph | |
2019/12/13 09:18:29 [TRACE] UpgradeResourceState: schema version of aws_vpc.example2 is still 1; calling provider "registry.terraform.io/-/aws" for any other minor fixups | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "aws_vpc.example1" | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "aws_vpc.example1" | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": starting visit (*terraform.NodePlannableResourceInstance) | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: UpgradeResourceState | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": evaluating | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Entering eval tree: aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalReadState | |
2019/12/13 09:18:29 [TRACE] EvalReadState: reading state for aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] UpgradeResourceState: schema version of aws_vpc.example1 is still 1; calling provider "registry.terraform.io/-/aws" for any other minor fixups | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: UpgradeResourceState | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalValidateSelfRef | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalDiffDestroy | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalCheckPreventDestroy | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalWriteDiff | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalDiff | |
2019/12/13 09:18:29 [TRACE] EvalWriteDiff: recorded Delete change for aws_vpc.example2 | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalWriteState | |
2019/12/13 09:18:29 [TRACE] EvalWriteState: removing state object for aws_vpc.example2 | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Exiting eval tree: aws_vpc.example2 (orphan) | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example2 (orphan)": visit complete | |
2019/12/13 09:18:29 [TRACE] Re-validating config for "aws_vpc.example1" | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: ValidateResourceTypeConfig | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: PlanResourceChange | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalCheckPreventDestroy | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalWriteState | |
2019/12/13 09:18:29 [TRACE] EvalWriteState: writing current state object for aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalWriteDiff | |
2019/12/13 09:18:29 [TRACE] EvalWriteDiff: recorded NoOp change for aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Exiting eval tree: aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": visit complete | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": dynamic subgraph completed successfully | |
2019/12/13 09:18:29 [TRACE] vertex "aws_vpc.example1": visit complete | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "provider.aws.somealias (close)" | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws.somealias (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws.somealias (close)": evaluating | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:29 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Entering eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:29 [TRACE] vertex "meta.count-boundary (EachMode fixup)": evaluating | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalCloseProvider | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Entering eval tree: meta.count-boundary (EachMode fixup) | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: Close | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalCountFixZeroOneBoundaryGlobal | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Exiting eval tree: meta.count-boundary (EachMode fixup) | |
2019/12/13 09:18:29 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2019-12-13T09:18:29.077-0500 [DEBUG] plugin: plugin process exited: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90549 | |
2019-12-13T09:18:29.077-0500 [DEBUG] plugin: plugin exited | |
2019/12/13 09:18:29 [TRACE] [walkPlan] Exiting eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws.somealias (close)": visit complete | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "root" | |
2019/12/13 09:18:29 [TRACE] vertex "root": starting visit (terraform.graphNodeRoot) | |
2019/12/13 09:18:29 [TRACE] vertex "root": visit complete | |
2019/12/13 09:18:29 [INFO] backend/local: apply calling Apply | |
2019/12/13 09:18:29 [INFO] terraform: building graph: GraphTypeApply | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2019/12/13 09:18:29 [TRACE] ConfigTransformer: Starting for path: | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_vpc.example1 (prepare state) - *terraform.NodeApplyableResource | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.DiffTransformer | |
2019/12/13 09:18:29 [TRACE] DiffTransformer starting | |
2019/12/13 09:18:29 [TRACE] DiffTransformer: found Delete change for aws_vpc.example2 | |
2019/12/13 09:18:29 [TRACE] DiffTransformer: aws_vpc.example2 will be represented for destruction by aws_vpc.example2 (destroy) | |
2019/12/13 09:18:29 [TRACE] DiffTransformer: found NoOp change for aws_vpc.example1 | |
2019/12/13 09:18:29 [TRACE] DiffTransformer complete | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.DiffTransformer with new graph: | |
aws_vpc.example1 (prepare state) - *terraform.NodeApplyableResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.OrphanResourceTransformer | |
2019/12/13 09:18:29 [TRACE] OrphanResourceTransformer: adding whole-resource orphan node for aws_vpc.example2 | |
2019/12/13 09:18:29 [TRACE] OrphanResourceTransformer: node "aws_vpc.example2 (clean up state)" depends on "aws_vpc.example2 (destroy)" | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.OrphanResourceTransformer with new graph: | |
aws_vpc.example1 (prepare state) - *terraform.NodeApplyableResource | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2019/12/13 09:18:29 [TRACE] AttachResourceConfigTransformer: attaching to "aws_vpc.example1 (prepare state)" (*terraform.NodeApplyableResource) config from main.tf:13,1-30 | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2019/12/13 09:18:29 [TRACE] ProviderConfigTransformer: attaching to "provider.aws.somealias" provider configuration from main.tf:8,1-15 | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_vpc.example1 (prepare state) - *terraform.NodeApplyableResource | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2019/12/13 09:18:29 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:29 [DEBUG] adding implicit provider configuration provider.aws, implied first by aws_vpc.example2 (clean up state) | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer with new graph: | |
aws_vpc.example1 (prepare state) - *terraform.NodeApplyableResource | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: aws_vpc.example1 (prepare state) is provided by provider.aws.somealias or inherited equivalent | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: aws_vpc.example2 (destroy) is provided by provider.aws.somealias exactly | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: aws_vpc.example2 (clean up state) is provided by provider.aws or inherited equivalent | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example1 (prepare state) | |
2019/12/13 09:18:29 [DEBUG] ProviderTransformer: "aws_vpc.example1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example2 (destroy) | |
2019/12/13 09:18:29 [DEBUG] ProviderTransformer: "aws_vpc.example2 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: exact match for provider.aws serving aws_vpc.example2 (clean up state) | |
2019/12/13 09:18:29 [DEBUG] ProviderTransformer: "aws_vpc.example2 (clean up state)" (*terraform.NodeDestroyResource) needs provider.aws | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_vpc.example1 (prepare state) - *terraform.NodeApplyableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_vpc.example1 (prepare state) - *terraform.NodeApplyableResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example1 (prepare state) | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example2 (destroy) | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example2 (clean up state) | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider.aws | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "aws_vpc.example1 (prepare state)" references: [] | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "aws_vpc.example2 (destroy)" references: [] | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "aws_vpc.example2 (clean up state)" references: [] | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "provider.aws.somealias" references: [] | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "provider.aws" references: [] | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.DestroyEdgeTransformer | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: "aws_vpc.example2 (destroy)" (*terraform.NodeDestroyResourceInstance) destroys aws_vpc.example2 | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: constructing temporary graph for analysis of references, starting from: | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.LocalTransformer on temporary graph | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.OutputTransformer on temporary graph | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.AttachResourceConfigTransformer on temporary graph | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.AttachStateTransformer on temporary graph | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.RootVariableTransformer on temporary graph | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.ModuleVariableTransformer on temporary graph | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.graphTransformerMulti on temporary graph | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2019/12/13 09:18:29 [TRACE] ProviderConfigTransformer: attaching to "provider.aws.somealias" provider configuration from main.tf:8,1-15 | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2019/12/13 09:18:29 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] MissingProviderTransformer: skipping implication of aliased config provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: aws_vpc.example2 is provided by provider.aws.somealias exactly | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: aws_vpc.example2 (destroy) is provided by provider.aws.somealias exactly | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example2 | |
2019/12/13 09:18:29 [DEBUG] ProviderTransformer: "aws_vpc.example2" (*terraform.NodeAbstractResourceInstance) needs provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] ProviderTransformer: exact match for provider.aws.somealias serving aws_vpc.example2 (destroy) | |
2019/12/13 09:18:29 [DEBUG] ProviderTransformer: "aws_vpc.example2 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_vpc.example2 - *terraform.NodeAbstractResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2019/12/13 09:18:29 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.AttachSchemaTransformer on temporary graph | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example2 | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_vpc.example2 (destroy) | |
2019/12/13 09:18:29 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: running *terraform.ReferenceTransformer on temporary graph | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "aws_vpc.example2" references: [] | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "aws_vpc.example2 (destroy)" references: [] | |
2019/12/13 09:18:29 [DEBUG] ReferenceTransformer: "provider.aws.somealias" references: [] | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: temporary reference graph: | |
aws_vpc.example2 | |
provider.aws.somealias | |
aws_vpc.example2 (destroy) | |
provider.aws.somealias | |
provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: creation node "aws_vpc.example2" references [provider.aws.somealias] | |
2019/12/13 09:18:29 [TRACE] DestroyEdgeTransformer: creation node "aws_vpc.example2 (destroy)" references [provider.aws.somealias] | |
2019/12/13 09:18:29 DestroyEdgeTransformer: pruning unused resource node aws_vpc.example1 (prepare state) | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.DestroyEdgeTransformer with new graph: | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.CBDEdgeTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.CBDEdgeTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.CloseProvisionerTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.CloseProvisionerTransformer (no changes) | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.RootTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.RootTransformer with new graph: | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
root - terraform.graphNodeRoot | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider.aws (close) - *terraform.graphNodeCloseProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
------ | |
2019/12/13 09:18:29 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2019/12/13 09:18:29 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws - *terraform.NodeApplyableProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
provider.aws - *terraform.NodeApplyableProvider | |
provider.aws (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example2 (clean up state) - *terraform.NodeDestroyResource | |
provider.aws.somealias - *terraform.NodeApplyableProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
aws_vpc.example2 (destroy) - *terraform.NodeDestroyResourceInstance | |
root - terraform.graphNodeRoot | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider.aws (close) - *terraform.graphNodeCloseProvider | |
provider.aws.somealias (close) - *terraform.graphNodeCloseProvider | |
------ | |
2019/12/13 09:18:29 [DEBUG] Starting graph walk: walkApply | |
2019/12/13 09:18:29 [TRACE] dag/walk: updating graph | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "provider.aws.somealias (close)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "provider.aws (close)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "root" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "aws_vpc.example2 (destroy)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "aws_vpc.example2 (clean up state)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "provider.aws.somealias" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added new vertex: "provider.aws" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "meta.count-boundary (EachMode fixup)" waiting on "aws_vpc.example2 (clean up state)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "provider.aws (close)" waiting on "aws_vpc.example2 (clean up state)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "provider.aws.somealias (close)" waiting on "aws_vpc.example2 (destroy)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "aws_vpc.example2 (destroy)" waiting on "provider.aws.somealias" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "aws_vpc.example2 (clean up state)" waiting on "aws_vpc.example2 (destroy)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "root" waiting on "meta.count-boundary (EachMode fixup)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "root" waiting on "provider.aws.somealias (close)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "root" waiting on "provider.aws (close)" | |
2019/12/13 09:18:29 [TRACE] dag/walk: added edge: "aws_vpc.example2 (clean up state)" waiting on "provider.aws" | |
2019/12/13 09:18:29 [TRACE] dag/walk: dependencies changed for "meta.count-boundary (EachMode fixup)", sending new deps | |
2019/12/13 09:18:29 [TRACE] dag/walk: dependencies changed for "provider.aws (close)", sending new deps | |
2019/12/13 09:18:29 [TRACE] dag/walk: dependencies changed for "provider.aws.somealias (close)", sending new deps | |
2019/12/13 09:18:29 [TRACE] dag/walk: dependencies changed for "aws_vpc.example2 (destroy)", sending new deps | |
2019/12/13 09:18:29 [TRACE] dag/walk: dependencies changed for "aws_vpc.example2 (clean up state)", sending new deps | |
2019/12/13 09:18:29 [TRACE] dag/walk: dependencies changed for "root", sending new deps | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "provider.aws.somealias" | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws.somealias": starting visit (*terraform.NodeApplyableProvider) | |
2019/12/13 09:18:29 [TRACE] dag/walk: visiting "provider.aws" | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws.somealias": evaluating | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws": starting visit (*terraform.NodeApplyableProvider) | |
2019/12/13 09:18:29 [TRACE] [walkApply] Entering eval tree: provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalInitProvider | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws": evaluating | |
2019/12/13 09:18:29 [TRACE] [walkApply] Entering eval tree: provider.aws | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalInitProvider | |
2019-12-13T09:18:29.079-0500 [INFO] plugin: configuring client automatic mTLS | |
2019-12-13T09:18:29.105-0500 [DEBUG] plugin: starting plugin: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 args=[/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4] | |
2019-12-13T09:18:29.120-0500 [DEBUG] plugin: plugin started: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90555 | |
2019-12-13T09:18:29.120-0500 [DEBUG] plugin: waiting for RPC address: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 | |
2019-12-13T09:18:29.142-0500 [INFO] plugin.terraform-provider-aws_v2.41.0_x4: configuring server automatic mTLS: timestamp=2019-12-13T09:18:29.142-0500 | |
2019-12-13T09:18:29.169-0500 [DEBUG] plugin: using plugin: version=5 | |
2019-12-13T09:18:29.169-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: plugin address: address=/var/folders/w8/05f3x02n27x72g0mc2jy6_180000gp/T/plugin352803006 network=unix timestamp=2019-12-13T09:18:29.169-0500 | |
2019/12/13 09:18:29 [TRACE] BuiltinEvalContext: Initialized "aws" provider for provider.aws.somealias | |
2019/12/13 09:18:29 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:29 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalConfigProvider | |
2019/12/13 09:18:29 [TRACE] buildProviderConfig for provider.aws.somealias: using explicit config only | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: GetSchema | |
2019-12-13T09:18:29.170-0500 [INFO] plugin: configuring client automatic mTLS | |
2019-12-13T09:18:29.195-0500 [DEBUG] plugin: starting plugin: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 args=[/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4] | |
2019-12-13T09:18:29.198-0500 [DEBUG] plugin: plugin started: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90556 | |
2019-12-13T09:18:29.198-0500 [DEBUG] plugin: waiting for RPC address: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 | |
2019-12-13T09:18:29.218-0500 [INFO] plugin.terraform-provider-aws_v2.41.0_x4: configuring server automatic mTLS: timestamp=2019-12-13T09:18:29.218-0500 | |
2019-12-13T09:18:29.245-0500 [DEBUG] plugin: using plugin: version=5 | |
2019-12-13T09:18:29.245-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: plugin address: network=unix address=/var/folders/w8/05f3x02n27x72g0mc2jy6_180000gp/T/plugin694389459 timestamp=2019-12-13T09:18:29.245-0500 | |
2019/12/13 09:18:29 [TRACE] BuiltinEvalContext: Initialized "aws" provider for provider.aws | |
2019/12/13 09:18:29 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:29 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:29 [TRACE] <root>: eval: *terraform.EvalConfigProvider | |
2019/12/13 09:18:29 [TRACE] buildProviderConfig for provider.aws: no configuration at all | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: GetSchema | |
2019/12/13 09:18:29 [TRACE] GRPCProvider: Configure | |
2019-12-13T09:18:29.260-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [INFO] No assume_role block read from configuration | |
2019-12-13T09:18:29.260-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [INFO] Building AWS auth structure | |
2019-12-13T09:18:29.260-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [INFO] Setting AWS metadata API timeout to 100ms | |
2019/12/13 09:18:29 [WARN] <root>: eval: *terraform.EvalConfigProvider, non-fatal err: Missing required argument: The argument "region" is required, but was not set. | |
2019/12/13 09:18:29 [ERROR] <root>: eval: *terraform.EvalSequence, err: Missing required argument: The argument "region" is required, but was not set. | |
2019/12/13 09:18:29 [ERROR] <root>: eval: *terraform.EvalOpFilter, err: Missing required argument: The argument "region" is required, but was not set. | |
2019/12/13 09:18:29 [ERROR] <root>: eval: *terraform.EvalSequence, err: Missing required argument: The argument "region" is required, but was not set. | |
2019/12/13 09:18:29 [TRACE] [walkApply] Exiting eval tree: provider.aws | |
2019/12/13 09:18:29 [TRACE] vertex "provider.aws": visit complete | |
2019-12-13T09:18:29.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id | |
2019-12-13T09:18:29.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [INFO] AWS Auth provider used: "SharedCredentialsProvider" | |
2019-12-13T09:18:29.874-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [DEBUG] Trying to get account information via sts:GetCallerIdentity | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:29 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: sts.amazonaws.com | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 43 | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=bf6b8718db4702ea62fed35f8b3d693dc6fc12b88056be37ac9b320db0180c11 | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141829Z | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=GetCallerIdentity&Version=2011-06-15 | |
2019-12-13T09:18:29.875-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 402 | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:29 GMT | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amzn-Requestid: 6fca45ac-1db3-11ea-a458-df94e82c34c8 | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <GetCallerIdentityResult> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Arn>arn:aws:iam::--OMITTED--:user/bflad</Arn> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <UserId>AIDASXIXB4ZJ7Y7PKVIJ2</UserId> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Account>--OMITTED--</Account> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResult> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ResponseMetadata> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <RequestId>6fca45ac-1db3-11ea-a458-df94e82c34c8</RequestId> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ResponseMetadata> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResponse> | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] Trying to get account information via sts:GetCallerIdentity | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: sts.amazonaws.com | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 43 | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=3377c34b3b0721c0863cd97e57148c497b06286be978e50f2b919e3efe3c616e | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141830Z | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=GetCallerIdentity&Version=2011-06-15 | |
2019-12-13T09:18:30.028-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 402 | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:29 GMT | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amzn-Requestid: 6fd3e2f2-1db3-11ea-9bfb-2706c65cacfd | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <GetCallerIdentityResult> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Arn>arn:aws:iam::--OMITTED--:user/bflad</Arn> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <UserId>AIDASXIXB4ZJ7Y7PKVIJ2</UserId> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <Account>--OMITTED--</Account> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResult> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <ResponseMetadata> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <RequestId>6fd3e2f2-1db3-11ea-9bfb-2706c65cacfd</RequestId> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </ResponseMetadata> | |
2019-12-13T09:18:30.092-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </GetCallerIdentityResponse> | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details: | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 87 | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=43f18039f18e993ebb39ea4a2777e3dc036573eee91248f25455b92de1ba1752 | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141830Z | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15 | |
2019-12-13T09:18:30.094-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details: | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 540 | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:30 GMT | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>e36b3748-cf2f-4c1c-a90d-56a8b28eafec</requestId> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <accountAttributeSet> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeName>supported-platforms</attributeName> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeValueSet> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <item> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <attributeValue>VPC</attributeValue> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </attributeValueSet> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </item> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </accountAttributeSet> | |
2019-12-13T09:18:30.233-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DescribeAccountAttributesResponse> | |
2019/12/13 09:18:30 [TRACE] [walkApply] Exiting eval tree: provider.aws.somealias | |
2019/12/13 09:18:30 [TRACE] vertex "provider.aws.somealias": visit complete | |
2019/12/13 09:18:30 [TRACE] dag/walk: visiting "aws_vpc.example2 (destroy)" | |
2019/12/13 09:18:30 [TRACE] vertex "aws_vpc.example2 (destroy)": starting visit (*terraform.NodeDestroyResourceInstance) | |
2019/12/13 09:18:30 [TRACE] vertex "aws_vpc.example2 (destroy)": evaluating | |
2019/12/13 09:18:30 [TRACE] [walkApply] Entering eval tree: aws_vpc.example2 (destroy) | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalOpFilter | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalSequence | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalGetProvider | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalReadDiff | |
2019/12/13 09:18:30 [TRACE] EvalReadDiff: Read Delete change from plan for aws_vpc.example2 | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalReduceDiff | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalIf | |
2019/12/13 09:18:30 [TRACE] <root>: eval: terraform.EvalNoop | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalReadState | |
2019/12/13 09:18:30 [TRACE] EvalReadState: reading state for aws_vpc.example2 | |
2019/12/13 09:18:30 [TRACE] UpgradeResourceState: schema version of aws_vpc.example2 is still 1; calling provider "registry.terraform.io/-/aws" for any other minor fixups | |
2019/12/13 09:18:30 [TRACE] GRPCProvider: UpgradeResourceState | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalRequireState | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalApplyPre | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalIf | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalApplyProvisioners | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalIf | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalIf | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalApply | |
2019/12/13 09:18:30 [DEBUG] aws_vpc.example2: applying the planned Delete change | |
2019/12/13 09:18:30 [TRACE] GRPCProvider: ApplyResourceChange | |
aws_vpc.example2: Destroying... [id=vpc-0d30c836648153f3d] | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [INFO] Deleting VPC: vpc-0d30c836648153f3d | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] Waiting for state to become: [success] | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DeleteVpc Details: | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ REQUEST POST-SIGN ]----------------------------- | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: POST / HTTP/1.1 | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Host: ec2.us-east-2.amazonaws.com | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: User-Agent: aws-sdk-go/1.25.47 (go1.13.4; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.18 (+https://www.terraform.io) | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Length: 63 | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIASXIXB4ZJSOXTHGOI/20191213/us-east-2/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=b689564578e10f5114b8e945e7cb68ecb48b6dec2aceb98054ea65cde33be92d | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: X-Amz-Date: 20191213T141830Z | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Accept-Encoding: gzip | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Action=DeleteVpc&Version=2016-11-15&VpcId=vpc-0d30c836648153f3d | |
2019-12-13T09:18:30.235-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DeleteVpc Details: | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ---[ RESPONSE ]-------------------------------------- | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: HTTP/1.1 200 OK | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Connection: close | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Transfer-Encoding: chunked | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Content-Type: text/xml;charset=UTF-8 | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Date: Fri, 13 Dec 2019 14:18:30 GMT | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Server: AmazonEC2 | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: Vary: accept-encoding | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: ----------------------------------------------------- | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: 2019/12/13 09:18:30 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <DeleteVpcResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <requestId>feabc951-1379-44f3-8277-391732349a0c</requestId> | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: <return>true</return> | |
2019-12-13T09:18:30.514-0500 [DEBUG] plugin.terraform-provider-aws_v2.41.0_x4: </DeleteVpcResponse> | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalWriteState | |
2019/12/13 09:18:30 [TRACE] EvalWriteState: removing state object for aws_vpc.example2 | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalApplyPost | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalUpdateStateHook | |
aws_vpc.example2: Destruction complete after 1s | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: creating backup snapshot at terraform.tfstate.backup | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: state has changed since last snapshot, so incrementing serial to 8 | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: writing snapshot at terraform.tfstate | |
2019/12/13 09:18:30 [TRACE] [walkApply] Exiting eval tree: aws_vpc.example2 (destroy) | |
2019/12/13 09:18:30 [TRACE] vertex "aws_vpc.example2 (destroy)": visit complete | |
2019/12/13 09:18:30 [TRACE] dag/walk: visiting "provider.aws.somealias (close)" | |
2019/12/13 09:18:30 [TRACE] vertex "provider.aws.somealias (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2019/12/13 09:18:30 [TRACE] vertex "provider.aws.somealias (close)": evaluating | |
2019/12/13 09:18:30 [TRACE] [walkApply] Entering eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:30 [TRACE] <root>: eval: *terraform.EvalCloseProvider | |
2019/12/13 09:18:30 [TRACE] GRPCProvider: Close | |
2019/12/13 09:18:30 [TRACE] dag/walk: upstream of "aws_vpc.example2 (clean up state)" errored, so skipping | |
2019/12/13 09:18:30 [TRACE] dag/walk: upstream of "meta.count-boundary (EachMode fixup)" errored, so skipping | |
2019/12/13 09:18:30 [TRACE] dag/walk: upstream of "provider.aws (close)" errored, so skipping | |
2019-12-13T09:18:30.528-0500 [DEBUG] plugin: plugin process exited: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90555 | |
2019-12-13T09:18:30.528-0500 [DEBUG] plugin: plugin exited | |
2019/12/13 09:18:30 [TRACE] [walkApply] Exiting eval tree: provider.aws.somealias (close) | |
2019/12/13 09:18:30 [TRACE] vertex "provider.aws.somealias (close)": visit complete | |
2019/12/13 09:18:30 [TRACE] dag/walk: upstream of "root" errored, so skipping | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: have already backed up original terraform.tfstate to terraform.tfstate.backup on a previous write | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: state has changed since last snapshot, so incrementing serial to 9 | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: writing snapshot at terraform.tfstate | |
Error: Missing required argument | |
The argument "region" is required, but was not set. | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: removing lock metadata file .terraform.tfstate.lock.info | |
2019/12/13 09:18:30 [TRACE] statemgr.Filesystem: unlocking terraform.tfstate using fcntl flock | |
2019-12-13T09:18:30.538-0500 [DEBUG] plugin: plugin process exited: path=/Users/bflad/test/11058/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.41.0_x4 pid=90556 | |
2019-12-13T09:18:30.538-0500 [DEBUG] plugin: plugin exited |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment