-
-
Save MauriceBrg/9ea8a732379413d2c72b9028de439656 to your computer and use it in GitHub Desktop.
Terraform aws_dms_endpoint problem
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 { | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "~>3.0" | |
} | |
} | |
} | |
provider "aws" { | |
region = "eu-central-1" | |
} | |
resource "aws_s3_bucket" "target_bucket" { | |
bucket_prefix = "reproducible-bucket" | |
force_destroy = true | |
} | |
resource "aws_iam_role" "dms_s3_writer" { | |
assume_role_policy = jsonencode({ | |
Version = "2012-10-17" | |
Statement = [ | |
{ | |
Action = "sts:AssumeRole" | |
Effect = "Allow" | |
Sid = "" | |
Principal = { | |
Service = "dms.amazonaws.com" | |
} | |
} | |
] | |
}) | |
} | |
resource "aws_dms_endpoint" "endpoint" { | |
endpoint_type = "target" | |
engine_name = "s3" | |
endpoint_id = "dummy-endpoint" | |
extra_connection_attributes = join(";", [ | |
"parquetTimestampInMillisecond=true", | |
"CdcPath=cdc", | |
"dataFormat=parquet", | |
"PreserveTransactions=true", | |
"includeOpForFullLoad=true", | |
"timestampColumnName=timestamp", | |
"parquetVersion=PARQUET_2_0", | |
"bucketName=${aws_s3_bucket.target_bucket.id}", | |
"bucketPrefix=some/prefix", | |
"datePartitionEnabled=true" | |
]) | |
s3_settings { | |
service_access_role_arn = aws_iam_role.dms_s3_writer.arn | |
} | |
} |
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
2021-06-04T15:38:55.577+0200 [DEBUG] Adding temp file log sink: /tmp/terraform-log354915417 | |
2021-06-04T15:38:55.577+0200 [INFO] Terraform version: 0.15.5 | |
2021-06-04T15:38:55.577+0200 [INFO] Go runtime version: go1.16.4 | |
2021-06-04T15:38:55.577+0200 [INFO] CLI args: []string{"/home/maurice/bin/terraform", "apply", "-auto-approve"} | |
2021-06-04T15:38:55.577+0200 [TRACE] Stdout is a terminal of width 272 | |
2021-06-04T15:38:55.577+0200 [TRACE] Stderr is a terminal of width 272 | |
2021-06-04T15:38:55.577+0200 [TRACE] Stdin is a terminal | |
2021-06-04T15:38:55.578+0200 [DEBUG] Attempting to open CLI config file: /home/maurice/.terraformrc | |
2021-06-04T15:38:55.578+0200 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2021-06-04T15:38:55.578+0200 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021-06-04T15:38:55.578+0200 [DEBUG] ignoring non-existing provider search directory /home/maurice/.terraform.d/plugins | |
2021-06-04T15:38:55.578+0200 [DEBUG] ignoring non-existing provider search directory /home/maurice/.local/share/terraform/plugins | |
2021-06-04T15:38:55.578+0200 [DEBUG] ignoring non-existing provider search directory /usr/share/ubuntu/terraform/plugins | |
2021-06-04T15:38:55.578+0200 [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins | |
2021-06-04T15:38:55.578+0200 [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins | |
2021-06-04T15:38:55.578+0200 [DEBUG] ignoring non-existing provider search directory /var/lib/snapd/desktop/terraform/plugins | |
2021-06-04T15:38:55.578+0200 [INFO] CLI command args: []string{"apply", "-auto-approve"} | |
2021-06-04T15:38:55.579+0200 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2021-06-04T15:38:55.579+0200 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2021-06-04T15:38:55.579+0200 [DEBUG] New state was assigned lineage "dfad09b7-8320-d22e-c925-42f7b16821bc" | |
2021-06-04T15:38:55.579+0200 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend) | |
2021-06-04T15:38:55.579+0200 [TRACE] Meta.Backend: instantiated backend of type <nil> | |
2021-06-04T15:38:55.579+0200 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021-06-04T15:38:55.580+0200 [TRACE] getproviders.SearchLocalDirectory: found registry.terraform.io/hashicorp/aws v3.44.0 for linux_amd64 at .terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64 | |
2021-06-04T15:38:55.580+0200 [TRACE] providercache.fillMetaCache: including .terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64 as a candidate package for registry.terraform.io/hashicorp/aws 3.44.0 | |
2021-06-04T15:38:56.421+0200 [DEBUG] checking for provisioner in "." | |
2021-06-04T15:38:56.421+0200 [DEBUG] checking for provisioner in "/home/maurice/bin" | |
2021-06-04T15:38:56.422+0200 [INFO] Failed to read plugin lock file .terraform/plugins/linux_amd64/lock.json: open .terraform/plugins/linux_amd64/lock.json: no such file or directory | |
2021-06-04T15:38:56.423+0200 [TRACE] Meta.Backend: backend <nil> does not support operations, so wrapping it in a local backend | |
2021-06-04T15:38:56.424+0200 [INFO] backend/local: starting Apply operation | |
2021-06-04T15:38:56.424+0200 [TRACE] backend/local: requesting state manager for workspace "default" | |
2021-06-04T15:38:56.424+0200 [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 | |
2021-06-04T15:38:56.424+0200 [TRACE] backend/local: requesting state lock for workspace "default" | |
2021-06-04T15:38:56.425+0200 [TRACE] statemgr.Filesystem: preparing to manage state snapshots at terraform.tfstate | |
2021-06-04T15:38:56.426+0200 [TRACE] statemgr.Filesystem: existing snapshot has lineage "2b74f25b-578b-b03f-f385-19cc9acfb1ab" serial 23 | |
2021-06-04T15:38:56.426+0200 [TRACE] statemgr.Filesystem: locking terraform.tfstate using fcntl flock | |
2021-06-04T15:38:56.426+0200 [TRACE] statemgr.Filesystem: writing lock metadata to .terraform.tfstate.lock.info | |
2021-06-04T15:38:56.426+0200 [TRACE] backend/local: reading remote state for workspace "default" | |
2021-06-04T15:38:56.426+0200 [TRACE] statemgr.Filesystem: reading latest snapshot from terraform.tfstate | |
2021-06-04T15:38:56.427+0200 [TRACE] statemgr.Filesystem: read snapshot with lineage "2b74f25b-578b-b03f-f385-19cc9acfb1ab" serial 23 | |
2021-06-04T15:38:56.427+0200 [TRACE] backend/local: retrieving local state snapshot for workspace "default" | |
2021-06-04T15:38:56.427+0200 [TRACE] backend/local: building context for current working directory | |
2021-06-04T15:38:56.427+0200 [TRACE] terraform.NewContext: starting | |
2021-06-04T15:38:56.427+0200 [TRACE] terraform.NewContext: loading provider schemas | |
2021-06-04T15:38:56.427+0200 [TRACE] LoadSchemas: retrieving schema for provider type "registry.terraform.io/hashicorp/aws" | |
2021-06-04T15:38:56.427+0200 [DEBUG] created provider logger: level=trace | |
2021-06-04T15:38:56.427+0200 [INFO] provider: configuring client automatic mTLS | |
2021-06-04T15:38:56.471+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5] | |
2021-06-04T15:38:56.471+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479090 | |
2021-06-04T15:38:56.471+0200 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 | |
2021-06-04T15:38:56.522+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: configuring server automatic mTLS: timestamp=2021-06-04T15:38:56.521+0200 | |
2021-06-04T15:38:56.564+0200 [DEBUG] provider: using plugin: version=5 | |
2021-06-04T15:38:56.564+0200 [DEBUG] provider.terraform-provider-aws_v3.44.0_x5: plugin address: address=/tmp/plugin490311920 network=unix timestamp=2021-06-04T15:38:56.564+0200 | |
2021-06-04T15:38:56.624+0200 [TRACE] GRPCProvider: GetProviderSchema | |
2021-06-04T15:38:56.624+0200 [TRACE] provider.stdio: waiting for stdio data | |
2021-06-04T15:38:56.743+0200 [TRACE] GRPCProvider: Close | |
2021-06-04T15:38:56.745+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing" | |
2021-06-04T15:38:56.748+0200 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479090 | |
2021-06-04T15:38:56.748+0200 [DEBUG] provider: plugin exited | |
2021-06-04T15:38:56.748+0200 [TRACE] terraform.NewContext: complete | |
2021-06-04T15:38:56.748+0200 [TRACE] backend/local: finished building terraform.Context | |
2021-06-04T15:38:56.748+0200 [TRACE] backend/local: requesting interactive input, if necessary | |
2021-06-04T15:38:56.748+0200 [TRACE] Context.Input: Prompting for provider arguments | |
2021-06-04T15:38:56.748+0200 [TRACE] Context.Input: Provider provider.aws declared at main.tf:10,1-15 | |
2021-06-04T15:38:56.748+0200 [TRACE] Context.Input: Input for provider.aws: map[string]cty.Value{} | |
2021-06-04T15:38:56.748+0200 [TRACE] backend/local: running validation operation | |
2021-06-04T15:38:56.748+0200 [INFO] terraform: building graph: GraphTypeValidate | |
2021-06-04T15:38:56.748+0200 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021-06-04T15:38:56.748+0200 [TRACE] ConfigTransformer: Starting for path: | |
2021-06-04T15:38:56.748+0200 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
------ | |
2021-06-04T15:38:56.748+0200 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021-06-04T15:38:56.748+0200 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021-06-04T15:38:56.748+0200 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021-06-04T15:38:56.748+0200 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021-06-04T15:38:56.748+0200 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021-06-04T15:38:56.748+0200 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021-06-04T15:38:56.748+0200 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021-06-04T15:38:56.748+0200 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021-06-04T15:38:56.748+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021-06-04T15:38:56.748+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021-06-04T15:38:56.748+0200 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] StateTransformer: state is empty, so nothing to do | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_s3_bucket.target_bucket" (*terraform.NodeValidatableResource) config from main.tf:14,1-41 | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_s3_bucket.target_bucket | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_iam_role.dms_s3_writer" (*terraform.NodeValidatableResource) config from main.tf:19,1-40 | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_iam_role.dms_s3_writer | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_dms_endpoint.endpoint" (*terraform.NodeValidatableResource) config from main.tf:35,1-39 | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_dms_endpoint.endpoint | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/hashicorp/aws\"]" provider configuration from main.tf:10,1-15 | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_s3_bucket.target_bucket | |
2021-06-04T15:38:56.749+0200 [DEBUG] ProviderTransformer: "aws_s3_bucket.target_bucket" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:56.749+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_iam_role.dms_s3_writer | |
2021-06-04T15:38:56.749+0200 [DEBUG] ProviderTransformer: "aws_iam_role.dms_s3_writer" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:56.749+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_dms_endpoint.endpoint | |
2021-06-04T15:38:56.749+0200 [DEBUG] ProviderTransformer: "aws_dms_endpoint.endpoint" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_s3_bucket.target_bucket | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_iam_role.dms_s3_writer | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_dms_endpoint.endpoint | |
2021-06-04T15:38:56.749+0200 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021-06-04T15:38:56.749+0200 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021-06-04T15:38:56.749+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:38:56.749+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer" references: [] | |
2021-06-04T15:38:56.749+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint" references: [aws_s3_bucket.target_bucket aws_iam_role.dms_s3_writer] | |
2021-06-04T15:38:56.749+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [] | |
2021-06-04T15:38:56.750+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket" references: [] | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.attachDataResourceDependsOnTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.attachDataResourceDependsOnTransformer (no changes) | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:38:56.750+0200 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021-06-04T15:38:56.750+0200 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:38:56.750+0200 [DEBUG] Starting graph walk: walkValidate | |
2021-06-04T15:38:56.750+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-06-04T15:38:56.750+0200 [DEBUG] created provider logger: level=trace | |
2021-06-04T15:38:56.751+0200 [INFO] provider: configuring client automatic mTLS | |
2021-06-04T15:38:56.792+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5] | |
2021-06-04T15:38:56.793+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479098 | |
2021-06-04T15:38:56.793+0200 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 | |
2021-06-04T15:38:56.851+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: configuring server automatic mTLS: timestamp=2021-06-04T15:38:56.851+0200 | |
2021-06-04T15:38:56.895+0200 [DEBUG] provider: using plugin: version=5 | |
2021-06-04T15:38:56.895+0200 [DEBUG] provider.terraform-provider-aws_v3.44.0_x5: plugin address: address=/tmp/plugin034349039 network=unix timestamp=2021-06-04T15:38:56.895+0200 | |
2021-06-04T15:38:56.943+0200 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/hashicorp/aws\"]" provider for provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:56.943+0200 [TRACE] buildProviderConfig for provider["registry.terraform.io/hashicorp/aws"]: using explicit config only | |
2021-06-04T15:38:56.943+0200 [TRACE] GRPCProvider: GetProviderSchema | |
2021-06-04T15:38:56.943+0200 [TRACE] provider.stdio: waiting for stdio data | |
2021-06-04T15:38:57.068+0200 [TRACE] GRPCProvider: ValidateProviderConfig | |
2021-06-04T15:38:57.165+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": visit complete | |
2021-06-04T15:38:57.165+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodeValidatableResource) | |
2021-06-04T15:38:57.165+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodeValidatableResource) | |
2021-06-04T15:38:57.165+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:38:57.165+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:38:57.166+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:38:57.166+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:38:57.166+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodeValidatableResource) | |
2021-06-04T15:38:57.167+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:38:57.167+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:38:57.167+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021-06-04T15:38:57.167+0200 [TRACE] GRPCProvider: Close | |
2021-06-04T15:38:57.167+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021-06-04T15:38:57.168+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021-06-04T15:38:57.168+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing" | |
2021-06-04T15:38:57.172+0200 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479098 | |
2021-06-04T15:38:57.172+0200 [DEBUG] provider: plugin exited | |
2021-06-04T15:38:57.172+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": visit complete | |
2021-06-04T15:38:57.172+0200 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021-06-04T15:38:57.172+0200 [TRACE] vertex "root": visit complete | |
2021-06-04T15:38:57.172+0200 [INFO] backend/local: apply calling Plan | |
2021-06-04T15:38:57.172+0200 [INFO] terraform: building graph: GraphTypePlan | |
2021-06-04T15:38:57.172+0200 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021-06-04T15:38:57.172+0200 [TRACE] ConfigTransformer: Starting for path: | |
2021-06-04T15:38:57.172+0200 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
------ | |
2021-06-04T15:38:57.172+0200 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021-06-04T15:38:57.172+0200 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021-06-04T15:38:57.172+0200 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021-06-04T15:38:57.172+0200 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021-06-04T15:38:57.172+0200 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021-06-04T15:38:57.172+0200 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021-06-04T15:38:57.172+0200 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] StateTransformer: state is empty, so nothing to do | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandPlannableResource) config from main.tf:14,1-41 | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandPlannableResource) config from main.tf:19,1-40 | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandPlannableResource) config from main.tf:35,1-39 | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/hashicorp/aws\"]" provider configuration from main.tf:10,1-15 | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:38:57.173+0200 [DEBUG] ProviderTransformer: "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:57.173+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:38:57.173+0200 [DEBUG] ProviderTransformer: "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:57.173+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:38:57.173+0200 [DEBUG] ProviderTransformer: "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:38:57.173+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket (expand)" references: [] | |
2021-06-04T15:38:57.173+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer (expand)" references: [] | |
2021-06-04T15:38:57.173+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint (expand)" references: [aws_s3_bucket.target_bucket (expand) aws_iam_role.dms_s3_writer (expand)] | |
2021-06-04T15:38:57.173+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [] | |
2021-06-04T15:38:57.173+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:57.173+0200 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachDependenciesTransformer: aws_s3_bucket.target_bucket depends on [] | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachDependenciesTransformer: aws_iam_role.dms_s3_writer depends on [] | |
2021-06-04T15:38:57.173+0200 [TRACE] AttachDependenciesTransformer: aws_dms_endpoint.endpoint depends on [aws_iam_role.dms_s3_writer aws_s3_bucket.target_bucket] | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021-06-04T15:38:57.174+0200 [TRACE] Executing graph transform *terraform.attachDataResourceDependsOnTransformer | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.attachDataResourceDependsOnTransformer (no changes) | |
2021-06-04T15:38:57.174+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:38:57.174+0200 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021-06-04T15:38:57.174+0200 [TRACE] ForcedCBDTransformer: "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021-06-04T15:38:57.174+0200 [TRACE] ForcedCBDTransformer: "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021-06-04T15:38:57.174+0200 [TRACE] ForcedCBDTransformer: "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021-06-04T15:38:57.174+0200 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:57.174+0200 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:38:57.174+0200 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:38:57.174+0200 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021-06-04T15:38:57.174+0200 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:38:57.174+0200 [DEBUG] Starting graph walk: walkPlan | |
2021-06-04T15:38:57.174+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-06-04T15:38:57.174+0200 [DEBUG] created provider logger: level=trace | |
2021-06-04T15:38:57.174+0200 [INFO] provider: configuring client automatic mTLS | |
2021-06-04T15:38:57.215+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5] | |
2021-06-04T15:38:57.217+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479106 | |
2021-06-04T15:38:57.217+0200 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 | |
2021-06-04T15:38:57.262+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: configuring server automatic mTLS: timestamp=2021-06-04T15:38:57.262+0200 | |
2021-06-04T15:38:57.305+0200 [DEBUG] provider: using plugin: version=5 | |
2021-06-04T15:38:57.305+0200 [DEBUG] provider.terraform-provider-aws_v3.44.0_x5: plugin address: address=/tmp/plugin648022014 network=unix timestamp=2021-06-04T15:38:57.305+0200 | |
2021-06-04T15:38:57.356+0200 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/hashicorp/aws\"]" provider for provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:38:57.356+0200 [TRACE] provider.stdio: waiting for stdio data | |
2021-06-04T15:38:57.356+0200 [TRACE] buildProviderConfig for provider["registry.terraform.io/hashicorp/aws"]: using explicit config only | |
2021-06-04T15:38:57.356+0200 [TRACE] GRPCProvider: GetProviderSchema | |
2021-06-04T15:38:57.483+0200 [TRACE] GRPCProvider: ValidateProviderConfig | |
2021-06-04T15:38:57.582+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/hashicorp/aws\"]" changed the config value, but that value is unused | |
2021-06-04T15:38:57.582+0200 [TRACE] GRPCProvider: ConfigureProvider | |
2021-06-04T15:38:57.584+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:38:57 [INFO] AWS Auth provider used: "SharedCredentialsProvider": timestamp=2021-06-04T15:38:57.584+0200 | |
2021-06-04T15:38:57.585+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:38:57 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-06-04T15:38:57.585+0200 | |
2021-06-04T15:38:57.586+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:38:57 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: sts.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 43 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=6a86e6771d4a702d31515c5bb066b4f3f7189847464132cd93a3f0a7dbec871c | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133857Z | |
Accept-Encoding: gzip | |
Action=GetCallerIdentity&Version=2011-06-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:38:57.586+0200 | |
2021-06-04T15:38:58.069+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:38:58 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 407 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:38:57 GMT | |
X-Amzn-Requestid: 8fe62013-728d-450d-8f9b-eb1fe6495e1b | |
-----------------------------------------------------: timestamp=2021-06-04T15:38:58.068+0200 | |
2021-06-04T15:38:58.069+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:38:58 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
<GetCallerIdentityResult> | |
<Arn>arn:aws:iam::123123123123:user/myname</Arn> | |
<UserId>AIDA2BFBC5RB4SXNVRQDI</UserId> | |
<Account>123123123123</Account> | |
</GetCallerIdentityResult> | |
<ResponseMetadata> | |
<RequestId>8fe62013-728d-450d-8f9b-eb1fe6495e1b</RequestId> | |
</ResponseMetadata> | |
</GetCallerIdentityResponse>: timestamp=2021-06-04T15:38:58.069+0200 | |
2021-06-04T15:38:58.069+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:38:58 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-06-04T15:38:58.069+0200 | |
2021-06-04T15:38:58.070+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:38:58 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: sts.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 43 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=d4e998f550d24093ae48f59c1c2d2938aa2bcb346b51a8ca47fa24ccc29930e6 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133858Z | |
Accept-Encoding: gzip | |
Action=GetCallerIdentity&Version=2011-06-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:38:58.070+0200 | |
2021-06-04T15:39:02.176+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "aws_s3_bucket.target_bucket (expand)" | |
2021-06-04T15:39:02.176+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:39:02.176+0200 [TRACE] dag/walk: vertex "aws_s3_bucket.target_bucket (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:02.177+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:39:02.177+0200 [TRACE] dag/walk: vertex "root" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" | |
2021-06-04T15:39:02.177+0200 [TRACE] dag/walk: vertex "aws_iam_role.dms_s3_writer (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:04.281+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:04 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 407 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:39:03 GMT | |
X-Amzn-Requestid: 17dab081-686f-40b0-ade8-5081ae2a50ca | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:04.281+0200 | |
2021-06-04T15:39:04.281+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:04 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
<GetCallerIdentityResult> | |
<Arn>arn:aws:iam::123123123123:user/myname</Arn> | |
<UserId>AIDA2BFBC5RB4SXNVRQDI</UserId> | |
<Account>123123123123</Account> | |
</GetCallerIdentityResult> | |
<ResponseMetadata> | |
<RequestId>17dab081-686f-40b0-ade8-5081ae2a50ca</RequestId> | |
</ResponseMetadata> | |
</GetCallerIdentityResponse>: timestamp=2021-06-04T15:39:04.281+0200 | |
2021-06-04T15:39:04.283+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:04 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: ec2.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 87 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=b9f244a1881c3bd81920f2cb1529344391fa0a1ad99b5ad10bcda9c52ff38be8 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133904Z | |
Accept-Encoding: gzip | |
Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:04.283+0200 | |
2021-06-04T15:39:07.029+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:07 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 540 | |
Cache-Control: no-cache, no-store | |
Content-Type: text/xml;charset=UTF-8 | |
Date: Fri, 04 Jun 2021 13:39:06 GMT | |
Server: AmazonEC2 | |
Strict-Transport-Security: max-age=31536000; includeSubDomains | |
X-Amzn-Requestid: 92f8d1f7-1195-4d67-aa41-e50d79eb4342 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:07.028+0200 | |
2021-06-04T15:39:07.029+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:07 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
<requestId>92f8d1f7-1195-4d67-aa41-e50d79eb4342</requestId> | |
<accountAttributeSet> | |
<item> | |
<attributeName>supported-platforms</attributeName> | |
<attributeValueSet> | |
<item> | |
<attributeValue>VPC</attributeValue> | |
</item> | |
</attributeValueSet> | |
</item> | |
</accountAttributeSet> | |
</DescribeAccountAttributesResponse>: timestamp=2021-06-04T15:39:07.028+0200 | |
2021-06-04T15:39:07.029+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": visit complete | |
2021-06-04T15:39:07.029+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021-06-04T15:39:07.029+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": expanding dynamic subgraph | |
2021-06-04T15:39:07.029+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021-06-04T15:39:07.029+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": entering dynamic subgraph | |
2021-06-04T15:39:07.029+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodePlannableResource) | |
2021-06-04T15:39:07.029+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": expanding dynamic subgraph | |
2021-06-04T15:39:07.030+0200 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021-06-04T15:39:07.030+0200 [TRACE] ResourceCountTransformer: adding aws_iam_role.dms_s3_writer as *terraform.NodePlannableResourceInstance | |
2021-06-04T15:39:07.030+0200 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_iam_role.dms_s3_writer - *terraform.NodePlannableResourceInstance | |
------ | |
2021-06-04T15:39:07.030+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021-06-04T15:39:07.030+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021-06-04T15:39:07.030+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:39:07.030+0200 [DEBUG] Resource instance state not found for node "aws_iam_role.dms_s3_writer", instance aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.030+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:39:07.030+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:39:07.030+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:39:07.030+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:39:07.030+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer" references: [] | |
2021-06-04T15:39:07.030+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021-06-04T15:39:07.030+0200 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021-06-04T15:39:07.030+0200 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021-06-04T15:39:07.030+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": entering dynamic subgraph | |
2021-06-04T15:39:07.030+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodePlannableResourceInstance) | |
2021-06-04T15:39:07.031+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": expanding dynamic subgraph | |
2021-06-04T15:39:07.031+0200 [TRACE] readResourceInstanceState: reading state for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [TRACE] readResourceInstanceState: no state present for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to prevRunState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [TRACE] NodeAbstractResourceInstance.refresh for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [DEBUG] refresh: aws_iam_role.dms_s3_writer: no state, so not refreshing | |
2021-06-04T15:39:07.031+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.031+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.032+0200 [TRACE] Re-validating config for "aws_iam_role.dms_s3_writer" | |
2021-06-04T15:39:07.032+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:39:07.032+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": entering dynamic subgraph | |
2021-06-04T15:39:07.032+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodePlannableResource) | |
2021-06-04T15:39:07.032+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": expanding dynamic subgraph | |
2021-06-04T15:39:07.032+0200 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021-06-04T15:39:07.032+0200 [TRACE] ResourceCountTransformer: adding aws_s3_bucket.target_bucket as *terraform.NodePlannableResourceInstance | |
2021-06-04T15:39:07.032+0200 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_s3_bucket.target_bucket - *terraform.NodePlannableResourceInstance | |
------ | |
2021-06-04T15:39:07.032+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021-06-04T15:39:07.032+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021-06-04T15:39:07.032+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:39:07.032+0200 [DEBUG] Resource instance state not found for node "aws_s3_bucket.target_bucket", instance aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.032+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:39:07.032+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:39:07.032+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:39:07.032+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:39:07.033+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket" references: [] | |
2021-06-04T15:39:07.033+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021-06-04T15:39:07.033+0200 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021-06-04T15:39:07.033+0200 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021-06-04T15:39:07.033+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": entering dynamic subgraph | |
2021-06-04T15:39:07.033+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodePlannableResourceInstance) | |
2021-06-04T15:39:07.033+0200 [TRACE] readResourceInstanceState: reading state for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [TRACE] readResourceInstanceState: no state present for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to prevRunState for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [TRACE] NodeAbstractResourceInstance.refresh for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [DEBUG] refresh: aws_s3_bucket.target_bucket: no state, so not refreshing | |
2021-06-04T15:39:07.033+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.033+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.034+0200 [TRACE] Re-validating config for "aws_s3_bucket.target_bucket" | |
2021-06-04T15:39:07.034+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:39:07.037+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:39:07.037+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:39:07.042+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_iam_role.dms_s3_writer, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .max_session_duration: planned value cty.NumberIntVal(3600) for a non-computed attribute | |
- .force_detach_policies: planned value cty.False for a non-computed attribute | |
- .path: planned value cty.StringVal("/") for a non-computed attribute | |
- .inline_policy: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead | |
2021-06-04T15:39:07.042+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.042+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.043+0200 [TRACE] writeChange: recorded Create change for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.043+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:39:07.043+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": dynamic subgraph completed successfully | |
2021-06-04T15:39:07.043+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:39:07.043+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:39:07.043+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": visit complete | |
2021-06-04T15:39:07.053+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_s3_bucket.target_bucket, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .acl: planned value cty.StringVal("private") for a non-computed attribute | |
- .versioning: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead | |
2021-06-04T15:39:07.053+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.053+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.053+0200 [TRACE] writeChange: recorded Create change for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": dynamic subgraph completed successfully | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": visit complete | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": expanding dynamic subgraph | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": entering dynamic subgraph | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodePlannableResource) | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": expanding dynamic subgraph | |
2021-06-04T15:39:07.054+0200 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021-06-04T15:39:07.054+0200 [TRACE] ResourceCountTransformer: adding aws_dms_endpoint.endpoint as *terraform.NodePlannableResourceInstance | |
2021-06-04T15:39:07.054+0200 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodePlannableResourceInstance | |
------ | |
2021-06-04T15:39:07.054+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021-06-04T15:39:07.054+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021-06-04T15:39:07.054+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:39:07.054+0200 [DEBUG] Resource instance state not found for node "aws_dms_endpoint.endpoint", instance aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.054+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:39:07.054+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:39:07.054+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:39:07.054+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:39:07.054+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint" references: [] | |
2021-06-04T15:39:07.054+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021-06-04T15:39:07.054+0200 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021-06-04T15:39:07.054+0200 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": entering dynamic subgraph | |
2021-06-04T15:39:07.054+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodePlannableResourceInstance) | |
2021-06-04T15:39:07.054+0200 [TRACE] readResourceInstanceState: reading state for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [TRACE] readResourceInstanceState: no state present for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to prevRunState for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [TRACE] NodeAbstractResourceInstance.refresh for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [DEBUG] refresh: aws_dms_endpoint.endpoint: no state, so not refreshing | |
2021-06-04T15:39:07.055+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.055+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.056+0200 [TRACE] Re-validating config for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:07.056+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:39:07.057+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:39:07.060+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_dms_endpoint.endpoint, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .s3_settings[0].compression_type: planned value cty.StringVal("NONE") for a non-computed attribute | |
- .s3_settings[0].csv_delimiter: planned value cty.StringVal(",") for a non-computed attribute | |
- .s3_settings[0].csv_row_delimiter: planned value cty.StringVal("\\n") for a non-computed attribute | |
- .s3_settings[0].date_partition_enabled: planned value cty.False for a non-computed attribute | |
2021-06-04T15:39:07.060+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.060+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.061+0200 [TRACE] writeChange: recorded Create change for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": dynamic subgraph completed successfully | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": visit complete | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021-06-04T15:39:07.061+0200 [TRACE] GRPCProvider: Close | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021-06-04T15:39:07.061+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021-06-04T15:39:07.062+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing" | |
2021-06-04T15:39:07.077+0200 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479106 | |
2021-06-04T15:39:07.077+0200 [DEBUG] provider: plugin exited | |
2021-06-04T15:39:07.078+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": visit complete | |
2021-06-04T15:39:07.078+0200 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021-06-04T15:39:07.078+0200 [TRACE] vertex "root": visit complete | |
2021-06-04T15:39:07.081+0200 [INFO] backend/local: apply calling Apply | |
2021-06-04T15:39:07.081+0200 [INFO] terraform: building graph: GraphTypeApply | |
2021-06-04T15:39:07.082+0200 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021-06-04T15:39:07.082+0200 [TRACE] ConfigTransformer: Starting for path: | |
2021-06-04T15:39:07.082+0200 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
------ | |
2021-06-04T15:39:07.082+0200 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021-06-04T15:39:07.082+0200 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021-06-04T15:39:07.082+0200 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021-06-04T15:39:07.082+0200 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021-06-04T15:39:07.082+0200 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021-06-04T15:39:07.082+0200 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021-06-04T15:39:07.082+0200 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021-06-04T15:39:07.082+0200 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021-06-04T15:39:07.082+0200 [TRACE] Executing graph transform *terraform.DiffTransformer | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer starting | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer: found Create change for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer: aws_iam_role.dms_s3_writer will be represented by aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer: found Create change for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer: aws_s3_bucket.target_bucket will be represented by aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer: found Create change for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer: aws_dms_endpoint.endpoint will be represented by aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.082+0200 [TRACE] DiffTransformer complete | |
2021-06-04T15:39:07.083+0200 [TRACE] Completed graph transform *terraform.DiffTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
------ | |
2021-06-04T15:39:07.083+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:39:07.083+0200 [DEBUG] Resource state not found for node "aws_iam_role.dms_s3_writer", instance aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.083+0200 [DEBUG] Resource state not found for node "aws_s3_bucket.target_bucket", instance aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.083+0200 [DEBUG] Resource state not found for node "aws_dms_endpoint.endpoint", instance aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.083+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:39:07.083+0200 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021-06-04T15:39:07.083+0200 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021-06-04T15:39:07.083+0200 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandApplyableResource) config from main.tf:14,1-41 | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_iam_role.dms_s3_writer" (*terraform.NodeApplyableResourceInstance) config from main.tf:19,1-40 | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_s3_bucket.target_bucket" (*terraform.NodeApplyableResourceInstance) config from main.tf:14,1-41 | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_dms_endpoint.endpoint" (*terraform.NodeApplyableResourceInstance) config from main.tf:35,1-39 | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandApplyableResource) config from main.tf:19,1-40 | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandApplyableResource) config from main.tf:35,1-39 | |
2021-06-04T15:39:07.083+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:39:07.083+0200 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021-06-04T15:39:07.083+0200 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021-06-04T15:39:07.083+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021-06-04T15:39:07.083+0200 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/hashicorp/aws\"]" provider configuration from main.tf:10,1-15 | |
2021-06-04T15:39:07.083+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:39:07.083+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021-06-04T15:39:07.083+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021-06-04T15:39:07.083+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021-06-04T15:39:07.083+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.083+0200 [DEBUG] ProviderTransformer: "aws_iam_role.dms_s3_writer" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.083+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.083+0200 [DEBUG] ProviderTransformer: "aws_s3_bucket.target_bucket" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.083+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.084+0200 [DEBUG] ProviderTransformer: "aws_dms_endpoint.endpoint" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.084+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:39:07.084+0200 [DEBUG] ProviderTransformer: "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.084+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:39:07.084+0200 [DEBUG] ProviderTransformer: "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.084+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:39:07.084+0200 [DEBUG] ProviderTransformer: "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.084+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:39:07.084+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021-06-04T15:39:07.084+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021-06-04T15:39:07.084+0200 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:39:07.084+0200 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021-06-04T15:39:07.084+0200 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021-06-04T15:39:07.084+0200 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021-06-04T15:39:07.084+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:39:07.084+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:39:07.084+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:39:07.084+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:07.084+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_s3_bucket.target_bucket | |
2021-06-04T15:39:07.084+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_dms_endpoint.endpoint | |
2021-06-04T15:39:07.084+0200 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.084+0200 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021-06-04T15:39:07.084+0200 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021-06-04T15:39:07.084+0200 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021-06-04T15:39:07.084+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:39:07.084+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer" references: [] | |
2021-06-04T15:39:07.085+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket" references: [] | |
2021-06-04T15:39:07.085+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint" references: [aws_s3_bucket.target_bucket aws_s3_bucket.target_bucket aws_s3_bucket.target_bucket (expand) aws_iam_role.dms_s3_writer aws_iam_role.dms_s3_writer aws_iam_role.dms_s3_writer (expand)] | |
2021-06-04T15:39:07.085+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [] | |
2021-06-04T15:39:07.085+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer (expand)" references: [] | |
2021-06-04T15:39:07.085+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint (expand)" references: [] | |
2021-06-04T15:39:07.085+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket (expand)" references: [] | |
2021-06-04T15:39:07.085+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:39:07.085+0200 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021-06-04T15:39:07.085+0200 [TRACE] AttachDependenciesTransformer: aws_iam_role.dms_s3_writer depends on [] | |
2021-06-04T15:39:07.085+0200 [TRACE] AttachDependenciesTransformer: aws_s3_bucket.target_bucket depends on [] | |
2021-06-04T15:39:07.085+0200 [TRACE] AttachDependenciesTransformer: aws_dms_endpoint.endpoint depends on [aws_iam_role.dms_s3_writer aws_s3_bucket.target_bucket] | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021-06-04T15:39:07.086+0200 [TRACE] ForcedCBDTransformer: "aws_iam_role.dms_s3_writer" (*terraform.NodeApplyableResourceInstance) has no CBD descendent, so skipping | |
2021-06-04T15:39:07.086+0200 [TRACE] ForcedCBDTransformer: "aws_s3_bucket.target_bucket" (*terraform.NodeApplyableResourceInstance) has no CBD descendent, so skipping | |
2021-06-04T15:39:07.086+0200 [TRACE] ForcedCBDTransformer: "aws_dms_endpoint.endpoint" (*terraform.NodeApplyableResourceInstance) has no CBD descendent, so skipping | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.DestroyEdgeTransformer | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.DestroyEdgeTransformer (no changes) | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.CBDEdgeTransformer | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.CBDEdgeTransformer (no changes) | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.pruneUnusedNodesTransformer | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.pruneUnusedNodesTransformer (no changes) | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021-06-04T15:39:07.086+0200 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:39:07.086+0200 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021-06-04T15:39:07.087+0200 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:39:07.087+0200 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021-06-04T15:39:07.087+0200 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeApplyableResourceInstance | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeApplyableResourceInstance | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeApplyableResourceInstance | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:39:07.087+0200 [DEBUG] Starting graph walk: walkApply | |
2021-06-04T15:39:07.087+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-06-04T15:39:07.087+0200 [DEBUG] created provider logger: level=trace | |
2021-06-04T15:39:07.087+0200 [INFO] provider: configuring client automatic mTLS | |
2021-06-04T15:39:07.136+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5] | |
2021-06-04T15:39:07.140+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479133 | |
2021-06-04T15:39:07.140+0200 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 | |
2021-06-04T15:39:07.203+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: configuring server automatic mTLS: timestamp=2021-06-04T15:39:07.202+0200 | |
2021-06-04T15:39:07.267+0200 [DEBUG] provider: using plugin: version=5 | |
2021-06-04T15:39:07.267+0200 [DEBUG] provider.terraform-provider-aws_v3.44.0_x5: plugin address: address=/tmp/plugin762142150 network=unix timestamp=2021-06-04T15:39:07.264+0200 | |
2021-06-04T15:39:07.365+0200 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/hashicorp/aws\"]" provider for provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:39:07.365+0200 [TRACE] buildProviderConfig for provider["registry.terraform.io/hashicorp/aws"]: using explicit config only | |
2021-06-04T15:39:07.365+0200 [TRACE] GRPCProvider: GetProviderSchema | |
2021-06-04T15:39:07.365+0200 [TRACE] provider.stdio: waiting for stdio data | |
2021-06-04T15:39:07.575+0200 [TRACE] GRPCProvider: ValidateProviderConfig | |
2021-06-04T15:39:07.676+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/hashicorp/aws\"]" changed the config value, but that value is unused | |
2021-06-04T15:39:07.676+0200 [TRACE] GRPCProvider: ConfigureProvider | |
2021-06-04T15:39:07.677+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:07 [INFO] AWS Auth provider used: "SharedCredentialsProvider": timestamp=2021-06-04T15:39:07.677+0200 | |
2021-06-04T15:39:07.679+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:07 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-06-04T15:39:07.679+0200 | |
2021-06-04T15:39:07.680+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:07 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: sts.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 43 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=7a0a2cf3ad39c91195ccbaa0dc38c127f2dc1159c4c1fc3e5ac4595cba271033 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133907Z | |
Accept-Encoding: gzip | |
Action=GetCallerIdentity&Version=2011-06-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:07.680+0200 | |
2021-06-04T15:39:11.167+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:11 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 407 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:39:10 GMT | |
X-Amzn-Requestid: 3d6c089c-505c-4e7c-9989-25659241b95b | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:11.166+0200 | |
2021-06-04T15:39:11.167+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:11 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
<GetCallerIdentityResult> | |
<Arn>arn:aws:iam::123123123123:user/myname</Arn> | |
<UserId>AIDA2BFBC5RB4SXNVRQDI</UserId> | |
<Account>123123123123</Account> | |
</GetCallerIdentityResult> | |
<ResponseMetadata> | |
<RequestId>3d6c089c-505c-4e7c-9989-25659241b95b</RequestId> | |
</ResponseMetadata> | |
</GetCallerIdentityResponse>: timestamp=2021-06-04T15:39:11.167+0200 | |
2021-06-04T15:39:11.167+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:11 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-06-04T15:39:11.167+0200 | |
2021-06-04T15:39:11.168+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:11 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: sts.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 43 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=7fec8a439efe0b349a2a7df72ea300be6c0380aee6aa3490e2dcb8cc4f83d98d | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133911Z | |
Accept-Encoding: gzip | |
Action=GetCallerIdentity&Version=2011-06-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:11.167+0200 | |
2021-06-04T15:39:12.090+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:12.091+0200 [TRACE] dag/walk: vertex "aws_iam_role.dms_s3_writer (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:12.091+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:12.091+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:12.091+0200 [TRACE] dag/walk: vertex "aws_s3_bucket.target_bucket (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:12.092+0200 [TRACE] dag/walk: vertex "aws_s3_bucket.target_bucket" is waiting for "aws_s3_bucket.target_bucket (expand)" | |
2021-06-04T15:39:12.092+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:12.092+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint" is waiting for "aws_iam_role.dms_s3_writer" | |
2021-06-04T15:39:12.092+0200 [TRACE] dag/walk: vertex "aws_iam_role.dms_s3_writer" is waiting for "aws_iam_role.dms_s3_writer (expand)" | |
2021-06-04T15:39:17.091+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:17.091+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:17.091+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:17.091+0200 [TRACE] dag/walk: vertex "aws_s3_bucket.target_bucket (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:17.092+0200 [TRACE] dag/walk: vertex "aws_iam_role.dms_s3_writer (expand)" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"]" | |
2021-06-04T15:39:17.093+0200 [TRACE] dag/walk: vertex "aws_iam_role.dms_s3_writer" is waiting for "aws_iam_role.dms_s3_writer (expand)" | |
2021-06-04T15:39:17.093+0200 [TRACE] dag/walk: vertex "aws_s3_bucket.target_bucket" is waiting for "aws_s3_bucket.target_bucket (expand)" | |
2021-06-04T15:39:17.093+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:17.095+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint" is waiting for "aws_iam_role.dms_s3_writer" | |
2021-06-04T15:39:17.313+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:17 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 407 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:39:17 GMT | |
X-Amzn-Requestid: 654803a3-7098-43af-a46c-9a6e8a5d86f9 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:17.312+0200 | |
2021-06-04T15:39:17.313+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:17 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
<GetCallerIdentityResult> | |
<Arn>arn:aws:iam::123123123123:user/myname</Arn> | |
<UserId>AIDA2BFBC5RB4SXNVRQDI</UserId> | |
<Account>123123123123</Account> | |
</GetCallerIdentityResult> | |
<ResponseMetadata> | |
<RequestId>654803a3-7098-43af-a46c-9a6e8a5d86f9</RequestId> | |
</ResponseMetadata> | |
</GetCallerIdentityResponse>: timestamp=2021-06-04T15:39:17.312+0200 | |
2021-06-04T15:39:17.326+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:17 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: ec2.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 87 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=4f4d6904ac1c0c2953be7be11cd956a9f410fc8f7c71df71e1f3c57c2974d856 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133917Z | |
Accept-Encoding: gzip | |
Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:17.325+0200 | |
2021-06-04T15:39:20.229+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 540 | |
Cache-Control: no-cache, no-store | |
Content-Type: text/xml;charset=UTF-8 | |
Date: Fri, 04 Jun 2021 13:39:19 GMT | |
Server: AmazonEC2 | |
Strict-Transport-Security: max-age=31536000; includeSubDomains | |
X-Amzn-Requestid: 40c6c66f-cb30-4a07-a1ae-79ce09059d3b | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:20.229+0200 | |
2021-06-04T15:39:20.231+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
<requestId>40c6c66f-cb30-4a07-a1ae-79ce09059d3b</requestId> | |
<accountAttributeSet> | |
<item> | |
<attributeName>supported-platforms</attributeName> | |
<attributeValueSet> | |
<item> | |
<attributeValue>VPC</attributeValue> | |
</item> | |
</attributeValueSet> | |
</item> | |
</accountAttributeSet> | |
</DescribeAccountAttributesResponse>: timestamp=2021-06-04T15:39:20.230+0200 | |
2021-06-04T15:39:20.231+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": visit complete | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": starting visit (*terraform.nodeExpandApplyableResource) | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": expanding dynamic subgraph | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": entering dynamic subgraph | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodeApplyableResource) | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": visit complete | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": starting visit (*terraform.nodeExpandApplyableResource) | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": expanding dynamic subgraph | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": entering dynamic subgraph | |
2021-06-04T15:39:20.232+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": starting visit (*terraform.nodeExpandApplyableResource) | |
2021-06-04T15:39:20.233+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": expanding dynamic subgraph | |
2021-06-04T15:39:20.233+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": entering dynamic subgraph | |
2021-06-04T15:39:20.233+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodeApplyableResource) | |
2021-06-04T15:39:20.233+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodeApplyableResource) | |
2021-06-04T15:39:20.233+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:39:20.233+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:39:20.234+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": visit complete | |
2021-06-04T15:39:20.234+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodeApplyableResourceInstance) | |
2021-06-04T15:39:20.235+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:39:20.235+0200 [TRACE] readDiff: Read Create change from plan for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:20.235+0200 [TRACE] readResourceInstanceState: reading state for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:20.235+0200 [TRACE] readResourceInstanceState: no state present for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:20.235+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:39:20.236+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": visit complete | |
2021-06-04T15:39:20.236+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodeApplyableResourceInstance) | |
2021-06-04T15:39:20.236+0200 [TRACE] readDiff: Read Create change from plan for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:20.237+0200 [TRACE] readDiff: Read Create change from plan for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:20.237+0200 [TRACE] readResourceInstanceState: reading state for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:20.237+0200 [TRACE] readResourceInstanceState: no state present for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:20.238+0200 [TRACE] readDiff: Read Create change from plan for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:20.238+0200 [TRACE] Re-validating config for "aws_iam_role.dms_s3_writer" | |
2021-06-04T15:39:20.238+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:39:20.239+0200 [TRACE] Re-validating config for "aws_s3_bucket.target_bucket" | |
2021-06-04T15:39:20.239+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:39:20.242+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:39:20.243+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:39:20.249+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_iam_role.dms_s3_writer, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .max_session_duration: planned value cty.NumberIntVal(3600) for a non-computed attribute | |
- .force_detach_policies: planned value cty.False for a non-computed attribute | |
- .path: planned value cty.StringVal("/") for a non-computed attribute | |
- .inline_policy: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead | |
2021-06-04T15:39:20.250+0200 [TRACE] checkPlannedChange: Verifying that actual change (action Create) matches planned change (action Create) | |
2021-06-04T15:39:20.250+0200 [TRACE] readResourceInstanceState: reading state for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:20.250+0200 [TRACE] readResourceInstanceState: no state present for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:20.250+0200 [INFO] Starting apply for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:20.250+0200 [DEBUG] aws_iam_role.dms_s3_writer: applying the planned Create change | |
2021-06-04T15:39:20.251+0200 [TRACE] GRPCProvider: ApplyResourceChange | |
2021-06-04T15:39:20.256+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] setting computed for "inline_policy" from ComputedKeys: timestamp=2021-06-04T15:39:20.256+0200 | |
2021-06-04T15:39:20.256+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] setting computed for "managed_policy_arns" from ComputedKeys: timestamp=2021-06-04T15:39:20.256+0200 | |
2021-06-04T15:39:20.257+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] setting computed for "tags_all" from ComputedKeys: timestamp=2021-06-04T15:39:20.256+0200 | |
2021-06-04T15:39:20.258+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:20.258+0200 | |
2021-06-04T15:39:20.258+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] [aws-sdk-go] DEBUG: Request iam/CreateRole Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: iam.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 365 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=4660b771a1857135960c7f494b55b70af9c4e7d564c7624cb4a37a62b1f1e412 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133920Z | |
Accept-Encoding: gzip | |
Action=CreateRole&AssumeRolePolicyDocument=%7B%22Statement%22%3A%5B%7B%22Action%22%3A%22sts%3AAssumeRole%22%2C%22Effect%22%3A%22Allow%22%2C%22Principal%22%3A%7B%22Service%22%3A%22dms.amazonaws.com%22%7D%2C%22Sid%22%3A%22%22%7D%5D%2C%22Version%22%3A%222012-10-17%22%7D&MaxSessionDuration=3600&Path=%2F&RoleName=terraform-20210604133920257700000001&Version=2010-05-08 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:20.258+0200 | |
2021-06-04T15:39:20.262+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_s3_bucket.target_bucket, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .acl: planned value cty.StringVal("private") for a non-computed attribute | |
- .versioning: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead | |
2021-06-04T15:39:20.262+0200 [TRACE] checkPlannedChange: Verifying that actual change (action Create) matches planned change (action Create) | |
2021-06-04T15:39:20.262+0200 [TRACE] readResourceInstanceState: reading state for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:20.262+0200 [TRACE] readResourceInstanceState: no state present for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:20.262+0200 [INFO] Starting apply for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:20.262+0200 [DEBUG] aws_s3_bucket.target_bucket: applying the planned Create change | |
2021-06-04T15:39:20.262+0200 [TRACE] GRPCProvider: ApplyResourceChange | |
2021-06-04T15:39:20.264+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] setting computed for "tags_all" from ComputedKeys: timestamp=2021-06-04T15:39:20.263+0200 | |
2021-06-04T15:39:20.264+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] setting computed for "versioning" from ComputedKeys: timestamp=2021-06-04T15:39:20.264+0200 | |
2021-06-04T15:39:20.264+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] S3 bucket create: reproducible-bucket20210604133920264300000002: timestamp=2021-06-04T15:39:20.264+0200 | |
2021-06-04T15:39:20.264+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] S3 bucket reproducible-bucket20210604133920264300000002 has canned ACL private: timestamp=2021-06-04T15:39:20.264+0200 | |
2021-06-04T15:39:20.264+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] S3 bucket create: reproducible-bucket20210604133920264300000002, using region: eu-central-1: timestamp=2021-06-04T15:39:20.264+0200 | |
2021-06-04T15:39:20.264+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:20.264+0200 | |
2021-06-04T15:39:20.264+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] Trying to create new S3 bucket: "reproducible-bucket20210604133920264300000002": timestamp=2021-06-04T15:39:20.264+0200 | |
2021-06-04T15:39:20.265+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] [aws-sdk-go] DEBUG: Request s3/CreateBucket Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
PUT / HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 156 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=content-length;host;x-amz-acl;x-amz-content-sha256;x-amz-date, Signature=02c01adeaea077cd51e8ec175da20c405421162c9a86c61df611475939a7a8c5 | |
X-Amz-Acl: private | |
X-Amz-Content-Sha256: 270d7010e28541d025cba79779722247d464e2edd8b448b42fdf618a477e0432 | |
X-Amz-Date: 20210604T133920Z | |
Accept-Encoding: gzip | |
<CreateBucketConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><LocationConstraint>eu-central-1</LocationConstraint></CreateBucketConfiguration> | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:20.265+0200 | |
2021-06-04T15:39:20.768+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] [aws-sdk-go] DEBUG: Response iam/CreateRole Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 817 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:39:19 GMT | |
X-Amzn-Requestid: 94d85446-9e16-4216-b6d1-2fdc58e2986e | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:20.767+0200 | |
2021-06-04T15:39:20.769+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] [aws-sdk-go] <CreateRoleResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/"> | |
<CreateRoleResult> | |
<Role> | |
<Path>/</Path> | |
<AssumeRolePolicyDocument>%7B%22Statement%22%3A%5B%7B%22Action%22%3A%22sts%3AAssumeRole%22%2C%22Effect%22%3A%22Allow%22%2C%22Principal%22%3A%7B%22Service%22%3A%22dms.amazonaws.com%22%7D%2C%22Sid%22%3A%22%22%7D%5D%2C%22Version%22%3A%222012-10-17%22%7D</AssumeRolePolicyDocument> | |
<RoleId>AROA2BFBC5RBRSNHN6SCH</RoleId> | |
<RoleName>terraform-20210604133920257700000001</RoleName> | |
<Arn>arn:aws:iam::123123123123:role/terraform-20210604133920257700000001</Arn> | |
<CreateDate>2021-06-04T13:39:20Z</CreateDate> | |
</Role> | |
</CreateRoleResult> | |
<ResponseMetadata> | |
<RequestId>94d85446-9e16-4216-b6d1-2fdc58e2986e</RequestId> | |
</ResponseMetadata> | |
</CreateRoleResponse>: timestamp=2021-06-04T15:39:20.768+0200 | |
2021-06-04T15:39:20.769+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:20.768+0200 | |
2021-06-04T15:39:20.769+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:20 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetRole Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: iam.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 79 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=1d5d223ad8101c932af96def6516dc944fbf502e5790e69c3c96c0b668606fc4 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133920Z | |
Accept-Encoding: gzip | |
Action=GetRole&RoleName=terraform-20210604133920257700000001&Version=2010-05-08 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:20.769+0200 | |
2021-06-04T15:39:21.005+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:21 [DEBUG] [aws-sdk-go] DEBUG: Response s3/CreateBucket Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 0 | |
Date: Fri, 04 Jun 2021 13:39:21 GMT | |
Location: http://reproducible-bucket20210604133920264300000002.s3.amazonaws.com/ | |
Server: AmazonS3 | |
X-Amz-Id-2: 1qOvsS+4icFFB3gXtGZ4t4RMdYJw1NmumToXKvmCB34BPIjwE17yrpSl+v7hqV+WqsJq8HDIokk= | |
X-Amz-Request-Id: DG3G4JXWK83BRRXM | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:21.005+0200 | |
2021-06-04T15:39:21.005+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:21 [DEBUG] [aws-sdk-go]: timestamp=2021-06-04T15:39:21.005+0200 | |
2021-06-04T15:39:21.005+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:21 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:21.005+0200 | |
2021-06-04T15:39:21.005+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:21 [DEBUG] [aws-sdk-go] DEBUG: Request s3/HeadBucket Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
HEAD / HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=ba0ee37ea77edea9e02791db445924cb3ecea2c0637dbbbe82273d1c9b51d674 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133921Z | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:21.005+0200 | |
2021-06-04T15:39:22.092+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:22.093+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:22.093+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:22.097+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint" is waiting for "aws_iam_role.dms_s3_writer" | |
2021-06-04T15:39:24.035+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetRole Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 879 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:39:23 GMT | |
X-Amzn-Requestid: cc2ad4fb-d99d-47d9-9172-4e352ada4167 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:24.035+0200 | |
2021-06-04T15:39:24.038+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] <GetRoleResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/"> | |
<GetRoleResult> | |
<Role> | |
<Path>/</Path> | |
<AssumeRolePolicyDocument>%7B%22Version%22%3A%222012-10-17%22%2C%22Statement%22%3A%5B%7B%22Sid%22%3A%22%22%2C%22Effect%22%3A%22Allow%22%2C%22Principal%22%3A%7B%22Service%22%3A%22dms.amazonaws.com%22%7D%2C%22Action%22%3A%22sts%3AAssumeRole%22%7D%5D%7D</AssumeRolePolicyDocument> | |
<MaxSessionDuration>3600</MaxSessionDuration> | |
<RoleId>AROA2BFBC5RBRSNHN6SCH</RoleId> | |
<RoleLastUsed/> | |
<RoleName>terraform-20210604133920257700000001</RoleName> | |
<Arn>arn:aws:iam::123123123123:role/terraform-20210604133920257700000001</Arn> | |
<CreateDate>2021-06-04T13:39:20Z</CreateDate> | |
</Role> | |
</GetRoleResult> | |
<ResponseMetadata> | |
<RequestId>cc2ad4fb-d99d-47d9-9172-4e352ada4167</RequestId> | |
</ResponseMetadata> | |
</GetRoleResponse>: timestamp=2021-06-04T15:39:24.036+0200 | |
2021-06-04T15:39:24.041+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] DEBUG: Request iam/ListRolePolicies Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: iam.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 88 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=9c761d4cd0ef5f1fa18d15462c55cff883243eb4cfc2963c8c2d678bb39acbaa | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133924Z | |
Accept-Encoding: gzip | |
Action=ListRolePolicies&RoleName=terraform-20210604133920257700000001&Version=2010-05-08 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:24.039+0200 | |
2021-06-04T15:39:24.535+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] DEBUG: Response iam/ListRolePolicies Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 323 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:39:24 GMT | |
X-Amzn-Requestid: f5628c5c-76f7-46b4-bc44-0eef94a9df31 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:24.534+0200 | |
2021-06-04T15:39:24.535+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] <ListRolePoliciesResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/"> | |
<ListRolePoliciesResult> | |
<IsTruncated>false</IsTruncated> | |
<PolicyNames/> | |
</ListRolePoliciesResult> | |
<ResponseMetadata> | |
<RequestId>f5628c5c-76f7-46b4-bc44-0eef94a9df31</RequestId> | |
</ResponseMetadata> | |
</ListRolePoliciesResponse>: timestamp=2021-06-04T15:39:24.535+0200 | |
2021-06-04T15:39:24.536+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] DEBUG: Request iam/ListAttachedRolePolicies Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: iam.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 96 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=31d93e51c890896f2defe5e6931c7eb2a73dcf166a45219ab83d210eb69a6f60 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T133924Z | |
Accept-Encoding: gzip | |
Action=ListAttachedRolePolicies&RoleName=terraform-20210604133920257700000001&Version=2010-05-08 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:24.535+0200 | |
2021-06-04T15:39:24.981+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] DEBUG: Response iam/ListAttachedRolePolicies Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 360 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:39:24 GMT | |
X-Amzn-Requestid: a7fa1bec-c7e6-48ca-a20e-fc1b88d7c718 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:24.981+0200 | |
2021-06-04T15:39:24.982+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:24 [DEBUG] [aws-sdk-go] <ListAttachedRolePoliciesResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/"> | |
<ListAttachedRolePoliciesResult> | |
<IsTruncated>false</IsTruncated> | |
<AttachedPolicies/> | |
</ListAttachedRolePoliciesResult> | |
<ResponseMetadata> | |
<RequestId>a7fa1bec-c7e6-48ca-a20e-fc1b88d7c718</RequestId> | |
</ResponseMetadata> | |
</ListAttachedRolePoliciesResponse>: timestamp=2021-06-04T15:39:24.981+0200 | |
2021-06-04T15:39:24.987+0200 [WARN] Provider "provider[\"registry.terraform.io/hashicorp/aws\"]" produced an unexpected new value for aws_iam_role.dms_s3_writer, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .description: was null, but now cty.StringVal("") | |
- .assume_role_policy: was cty.StringVal("{\"Statement\":[{\"Action\":\"sts:AssumeRole\",\"Effect\":\"Allow\",\"Principal\":{\"Service\":\"dms.amazonaws.com\"},\"Sid\":\"\"}],\"Version\":\"2012-10-17\"}"), but now cty.StringVal("{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"\",\"Effect\":\"Allow\",\"Principal\":{\"Service\":\"dms.amazonaws.com\"},\"Action\":\"sts:AssumeRole\"}]}") | |
2021-06-04T15:39:24.988+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:24.989+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:24.990+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:24.990+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:39:24.994+0200 [TRACE] statemgr.Filesystem: creating backup snapshot at terraform.tfstate.backup | |
2021-06-04T15:39:24.997+0200 [TRACE] statemgr.Filesystem: state has changed since last snapshot, so incrementing serial to 24 | |
2021-06-04T15:39:24.998+0200 [TRACE] statemgr.Filesystem: writing snapshot at terraform.tfstate | |
2021-06-04T15:39:25.006+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:39:26.874+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] [aws-sdk-go] DEBUG: Response s3/HeadBucket Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:28 GMT | |
Server: AmazonS3 | |
X-Amz-Bucket-Region: eu-central-1 | |
X-Amz-Id-2: qduT72frRPMGq5BUfGpJ7fiHu/Vy8fy4hzt7w1ozcYnALUgYOEddn7B8AJnq/sEJPX4bjs6kf7k= | |
X-Amz-Request-Id: JKHQGDG20YEQAGYX | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:26.874+0200 | |
2021-06-04T15:39:26.874+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] [aws-sdk-go]: timestamp=2021-06-04T15:39:26.874+0200 | |
2021-06-04T15:39:26.875+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:26.874+0200 | |
2021-06-04T15:39:26.875+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketAcl Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?acl= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3b493ad35f2a87255711bbf857c26f4caedd18b3e9ccce22afd9e115047f1ab9 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133926Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:26.874+0200 | |
2021-06-04T15:39:26.985+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketAcl Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:28 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: FA9IacGxIXVinibStkVMxGQkOuZYw6eg6u5GDskAZq2+KsVDgzq/9uUR6u2fIh1v7pjBmgM73ew= | |
X-Amz-Request-Id: JKHHGVNBBSSQKW7J | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:26.984+0200 | |
2021-06-04T15:39:26.985+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<AccessControlPolicy xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Owner><ID>f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b</ID></Owner><AccessControlList><Grant><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser"><ID>f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b</ID></Grantee><Permission>FULL_CONTROL</Permission></Grant></AccessControlList></AccessControlPolicy>: timestamp=2021-06-04T15:39:26.984+0200 | |
2021-06-04T15:39:26.985+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] S3 bucket: reproducible-bucket20210604133920264300000002, read ACL grants policy: { | |
Grants: [{ | |
Grantee: { | |
ID: "f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b", | |
Type: "CanonicalUser" | |
}, | |
Permission: "FULL_CONTROL" | |
}], | |
Owner: { | |
ID: "f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b" | |
} | |
}: timestamp=2021-06-04T15:39:26.985+0200 | |
2021-06-04T15:39:26.985+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:26.985+0200 | |
2021-06-04T15:39:26.985+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:26 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketCors Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?cors= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=304f433d951923cd5fac7320df707499d5ecd6f09524619450552b1d0c73500f | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133926Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:26.985+0200 | |
2021-06-04T15:39:27.094+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:27.094+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:27.094+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:30.008+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint" is waiting for "aws_s3_bucket.target_bucket" | |
2021-06-04T15:39:32.097+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:32.097+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:32.097+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:32.982+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:32 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketCors Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:32 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: o2lrCavSSFRHqCCe23A1lD8bOtQfHjgP5yx8aB609Vlj2Rf7b53Gvt0ONww6AW9+p8agrGuqR1c= | |
X-Amz-Request-Id: CEGX3DA04FV5H70Y | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:32.981+0200 | |
2021-06-04T15:39:32.982+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:32 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>NoSuchCORSConfiguration</Code><Message>The CORS configuration does not exist</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>CEGX3DA04FV5H70Y</RequestId><HostId>o2lrCavSSFRHqCCe23A1lD8bOtQfHjgP5yx8aB609Vlj2Rf7b53Gvt0ONww6AW9+p8agrGuqR1c=</HostId></Error>: timestamp=2021-06-04T15:39:32.981+0200 | |
2021-06-04T15:39:32.982+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:32 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketCors failed, attempt 0/25, error NoSuchCORSConfiguration: The CORS configuration does not exist | |
status code: 404, request id: CEGX3DA04FV5H70Y, host id: o2lrCavSSFRHqCCe23A1lD8bOtQfHjgP5yx8aB609Vlj2Rf7b53Gvt0ONww6AW9+p8agrGuqR1c=: timestamp=2021-06-04T15:39:32.981+0200 | |
2021-06-04T15:39:32.982+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:32 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:32.982+0200 | |
2021-06-04T15:39:32.982+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:32 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketWebsite Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?website= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=aa33657faad99b219a57e55da5d7ff992f62013023e55a8f1b4151d3a6a2a488 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133932Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:32.982+0200 | |
2021-06-04T15:39:35.017+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint" is waiting for "aws_s3_bucket.target_bucket" | |
2021-06-04T15:39:35.992+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:35 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketWebsite Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:35 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: 51WjcHKfn4heOMgfsS/VQR796TfXQvBlTA/cBj0cfpkiSWZ7Kg775dZVzY8HzohLQw5PxG/KPcE= | |
X-Amz-Request-Id: ZZFDQKKQ12Z0ZKMP | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:35.991+0200 | |
2021-06-04T15:39:35.992+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:35 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>NoSuchWebsiteConfiguration</Code><Message>The specified bucket does not have a website configuration</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>ZZFDQKKQ12Z0ZKMP</RequestId><HostId>51WjcHKfn4heOMgfsS/VQR796TfXQvBlTA/cBj0cfpkiSWZ7Kg775dZVzY8HzohLQw5PxG/KPcE=</HostId></Error>: timestamp=2021-06-04T15:39:35.992+0200 | |
2021-06-04T15:39:35.995+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:35 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketWebsite failed, attempt 0/25, error NoSuchWebsiteConfiguration: The specified bucket does not have a website configuration | |
status code: 404, request id: ZZFDQKKQ12Z0ZKMP, host id: 51WjcHKfn4heOMgfsS/VQR796TfXQvBlTA/cBj0cfpkiSWZ7Kg775dZVzY8HzohLQw5PxG/KPcE=: timestamp=2021-06-04T15:39:35.992+0200 | |
2021-06-04T15:39:35.995+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:35 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:35.993+0200 | |
2021-06-04T15:39:35.997+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:35 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketVersioning Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?versioning= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=051496f129541d2ce6aab8025223719247f17b3f3a9956f85f088631fe71e492 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133935Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:35.995+0200 | |
2021-06-04T15:39:37.104+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:37.104+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:37.105+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:39.041+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketVersioning Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Date: Fri, 04 Jun 2021 13:39:40 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: wJK9evaV/1sZoG6mntI8/BesHkWhRySNg3TgnTcD5IXtbsJNU3Sn/jUEloZFTcfCmvqzvxUuKtI= | |
X-Amz-Request-Id: 39MY2BWQHYJHCJ0B | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:39.040+0200 | |
2021-06-04T15:39:39.041+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<VersioningConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"/>: timestamp=2021-06-04T15:39:39.040+0200 | |
2021-06-04T15:39:39.041+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:39.040+0200 | |
2021-06-04T15:39:39.045+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketAccelerateConfiguration Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?accelerate= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=adc8f09558ef6b9d19d7586e5e59829a9e668eaf614bb190ddc2057788639bb7 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133939Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:39.042+0200 | |
2021-06-04T15:39:39.160+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketAccelerateConfiguration Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Date: Fri, 04 Jun 2021 13:39:40 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: Q7gBZImjVmq9Cwp496o+toGQLg3Z1JDBq+nHJ0Oxra+v1C7c9EjZ52XNWQ/XZox/xU9llmFCLM4= | |
X-Amz-Request-Id: 39MV3EAN5H2TK709 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:39.160+0200 | |
2021-06-04T15:39:39.160+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<AccelerateConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"/>: timestamp=2021-06-04T15:39:39.160+0200 | |
2021-06-04T15:39:39.160+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:39.160+0200 | |
2021-06-04T15:39:39.161+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:39 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketRequestPayment Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?requestPayment= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=2ed61ef1677e90b51914f17ddcbffd10aa82f8f871581001e1c9e7284ed0cc5b | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133939Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:39.160+0200 | |
2021-06-04T15:39:40.018+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint" is waiting for "aws_s3_bucket.target_bucket" | |
2021-06-04T15:39:42.105+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:42.105+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:42.105+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:42.200+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketRequestPayment Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Date: Fri, 04 Jun 2021 13:39:43 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: 8L7dlpzcxVscISDUSAMV4hBcMIdaFKEkQp07MfSkVaLlAJaWnM+y1+fMDfvVxF1RxBJ/m9QwJLk= | |
X-Amz-Request-Id: EEG73WMAV906KEHE | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:42.199+0200 | |
2021-06-04T15:39:42.200+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<RequestPaymentConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Payer>BucketOwner</Payer></RequestPaymentConfiguration>: timestamp=2021-06-04T15:39:42.200+0200 | |
2021-06-04T15:39:42.200+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:42.200+0200 | |
2021-06-04T15:39:42.200+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketLogging Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?logging= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=ffe729ce2cd1eea30e44be3d843d94621593a4857044ca557e014a149dac9aef | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133942Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:42.200+0200 | |
2021-06-04T15:39:42.313+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketLogging Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 289 | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:43 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: yGCbBVy6dKhrJ7gBE9aLae19mHxsOv5jGGBg/yi0YTQE+IZA2FzdvOD81Z8D/DK5b5+de7cTddw= | |
X-Amz-Request-Id: EEG813NY6JWRYA60 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:42.312+0200 | |
2021-06-04T15:39:42.314+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<BucketLoggingStatus xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> | |
<!--<LoggingEnabled><TargetBucket>myLogsBucket</TargetBucket><TargetPrefix>add/this/prefix/to/my/log/files/access_log-</TargetPrefix></LoggingEnabled>--> | |
</BucketLoggingStatus>: timestamp=2021-06-04T15:39:42.313+0200 | |
2021-06-04T15:39:42.315+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:42.314+0200 | |
2021-06-04T15:39:42.317+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketLifecycleConfiguration Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?lifecycle= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=8782c8816c25304f6ed15db6aac20dd27d021a2582edab20d13471e350b518c4 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133942Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:42.317+0200 | |
2021-06-04T15:39:42.431+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketLifecycleConfiguration Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Content-Length: 319 | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:43 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: AkttcS8LdpBVcOIEtz+rhoLLPRBqmX5LcoaHSjW+/1tX6+hbwm8crEAFeG0pAzfjgPAjP+Y034k= | |
X-Amz-Id-2: AkttcS8LdpBVcOIEtz+rhoLLPRBqmX5LcoaHSjW+/1tX6+hbwm8crEAFeG0pAzfjgPAjP+Y034k= | |
X-Amz-Request-Id: EEG9F6FG30BKQJPY | |
X-Amz-Request-Id: EEG9F6FG30BKQJPY | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:42.431+0200 | |
2021-06-04T15:39:42.432+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] <Error><Code>NoSuchLifecycleConfiguration</Code><Message>The lifecycle configuration does not exist</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>EEG9F6FG30BKQJPY</RequestId><HostId>AkttcS8LdpBVcOIEtz+rhoLLPRBqmX5LcoaHSjW+/1tX6+hbwm8crEAFeG0pAzfjgPAjP+Y034k=</HostId></Error>: timestamp=2021-06-04T15:39:42.431+0200 | |
2021-06-04T15:39:42.432+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketLifecycleConfiguration failed, attempt 0/25, error NoSuchLifecycleConfiguration: The lifecycle configuration does not exist | |
status code: 404, request id: EEG9F6FG30BKQJPY, host id: AkttcS8LdpBVcOIEtz+rhoLLPRBqmX5LcoaHSjW+/1tX6+hbwm8crEAFeG0pAzfjgPAjP+Y034k=: timestamp=2021-06-04T15:39:42.431+0200 | |
2021-06-04T15:39:42.432+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:42.431+0200 | |
2021-06-04T15:39:42.432+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:42 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketReplication Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?replication= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3f26c9080df63949990cf80f0a37467e32f912d9a94aa206ebb8709ef6f9ccbb | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133942Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:42.432+0200 | |
2021-06-04T15:39:45.036+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint" is waiting for "aws_s3_bucket.target_bucket" | |
2021-06-04T15:39:45.480+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:45 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketReplication Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:45 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: CzI6YRi+fCIH+oVe6YwV80VOhNtvivEJ4bRq/xpXiiNioldtNKvDJ+sa/cY/Y9w73ltzVd4oTnc= | |
X-Amz-Request-Id: RRBGTQ2GHDD920YP | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:45.480+0200 | |
2021-06-04T15:39:45.480+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:45 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>ReplicationConfigurationNotFoundError</Code><Message>The replication configuration was not found</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>RRBGTQ2GHDD920YP</RequestId><HostId>CzI6YRi+fCIH+oVe6YwV80VOhNtvivEJ4bRq/xpXiiNioldtNKvDJ+sa/cY/Y9w73ltzVd4oTnc=</HostId></Error>: timestamp=2021-06-04T15:39:45.480+0200 | |
2021-06-04T15:39:45.480+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:45 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketReplication failed, attempt 0/25, error ReplicationConfigurationNotFoundError: The replication configuration was not found | |
status code: 404, request id: RRBGTQ2GHDD920YP, host id: CzI6YRi+fCIH+oVe6YwV80VOhNtvivEJ4bRq/xpXiiNioldtNKvDJ+sa/cY/Y9w73ltzVd4oTnc=: timestamp=2021-06-04T15:39:45.480+0200 | |
2021-06-04T15:39:45.480+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:45 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:45.480+0200 | |
2021-06-04T15:39:45.481+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:45 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketEncryption Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?encryption= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=e3ab8800084ae28846810afd647ac6355e27a416a609aa2a5946b092d424a21a | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133945Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:45.480+0200 | |
2021-06-04T15:39:47.106+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:47.106+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:47.106+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:48.341+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketEncryption Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:47 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: fC49dKjIqnjprqTJU2iAhBsBz8Fb4kmO3zhBMPaEQKdF4EYpdCrpsuo0ztbd441BDbq/ZLy2AIA= | |
X-Amz-Request-Id: H21Q2FSC0W00EK8Y | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.340+0200 | |
2021-06-04T15:39:48.341+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>ServerSideEncryptionConfigurationNotFoundError</Code><Message>The server side encryption configuration was not found</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>H21Q2FSC0W00EK8Y</RequestId><HostId>fC49dKjIqnjprqTJU2iAhBsBz8Fb4kmO3zhBMPaEQKdF4EYpdCrpsuo0ztbd441BDbq/ZLy2AIA=</HostId></Error>: timestamp=2021-06-04T15:39:48.340+0200 | |
2021-06-04T15:39:48.341+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketEncryption failed, attempt 0/25, error ServerSideEncryptionConfigurationNotFoundError: The server side encryption configuration was not found | |
status code: 404, request id: H21Q2FSC0W00EK8Y, host id: fC49dKjIqnjprqTJU2iAhBsBz8Fb4kmO3zhBMPaEQKdF4EYpdCrpsuo0ztbd441BDbq/ZLy2AIA=: timestamp=2021-06-04T15:39:48.340+0200 | |
2021-06-04T15:39:48.341+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:48.340+0200 | |
2021-06-04T15:39:48.341+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObjectLockConfiguration Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?object-lock= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=1d5e7d433f8f5c4470875442cb2ebcba3b76009fbfff9a8a1b5722146db680d0 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133948Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.341+0200 | |
2021-06-04T15:39:48.455+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObjectLockConfiguration Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:47 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: d7rylm/wfQGMWy643O4z0o717KUbL7YbdRnIroYHRs8VZZ0RUtnrVja7cLQhahvVqcJp1+Qir3Q= | |
X-Amz-Request-Id: H21KHB7PYJNAMF8T | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.454+0200 | |
2021-06-04T15:39:48.455+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>ObjectLockConfigurationNotFoundError</Code><Message>Object Lock configuration does not exist for this bucket</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>H21KHB7PYJNAMF8T</RequestId><HostId>d7rylm/wfQGMWy643O4z0o717KUbL7YbdRnIroYHRs8VZZ0RUtnrVja7cLQhahvVqcJp1+Qir3Q=</HostId></Error>: timestamp=2021-06-04T15:39:48.454+0200 | |
2021-06-04T15:39:48.455+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetObjectLockConfiguration failed, attempt 0/25, error ObjectLockConfigurationNotFoundError: Object Lock configuration does not exist for this bucket | |
status code: 404, request id: H21KHB7PYJNAMF8T, host id: d7rylm/wfQGMWy643O4z0o717KUbL7YbdRnIroYHRs8VZZ0RUtnrVja7cLQhahvVqcJp1+Qir3Q=: timestamp=2021-06-04T15:39:48.454+0200 | |
2021-06-04T15:39:48.455+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:48.454+0200 | |
2021-06-04T15:39:48.455+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Request s3/HeadBucket Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
HEAD / HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=232b28e031ed865ea9ccd9c4da572dd346ffbd5caa5ba7765a4c59e354b48707 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133948Z | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.454+0200 | |
2021-06-04T15:39:48.560+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Response s3/HeadBucket Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:49 GMT | |
Server: AmazonS3 | |
X-Amz-Bucket-Region: eu-central-1 | |
X-Amz-Id-2: o3etC8kfhWbwVpMetHJvrivBJqUnX6JYX3FAn2ApIeVDXaGwz9JO7RlF/mqFsg1tF85A8VybIVE= | |
X-Amz-Request-Id: H21QQRPV43DSBWRW | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.560+0200 | |
2021-06-04T15:39:48.560+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go]: timestamp=2021-06-04T15:39:48.560+0200 | |
2021-06-04T15:39:48.560+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:48.560+0200 | |
2021-06-04T15:39:48.561+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketTagging Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?tagging= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=86b1d18dd3f831300482a498413bd90335ca0ec38a3dc1f63974cca41d79fae5 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T133948Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.561+0200 | |
2021-06-04T15:39:48.664+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketTagging Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:39:48 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: VPZq/b4D7/00TEi4Pv061XRgtie+H8lQCZrAexm+ujmO8PYb24KQlY0bnwOu/BhWZbGkfaIABlg= | |
X-Amz-Request-Id: H21MPXEY02YMPTXN | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.663+0200 | |
2021-06-04T15:39:48.664+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>NoSuchTagSet</Code><Message>The TagSet does not exist</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>H21MPXEY02YMPTXN</RequestId><HostId>VPZq/b4D7/00TEi4Pv061XRgtie+H8lQCZrAexm+ujmO8PYb24KQlY0bnwOu/BhWZbGkfaIABlg=</HostId></Error>: timestamp=2021-06-04T15:39:48.663+0200 | |
2021-06-04T15:39:48.664+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketTagging failed, attempt 0/25, error NoSuchTagSet: The TagSet does not exist | |
status code: 404, request id: H21MPXEY02YMPTXN, host id: VPZq/b4D7/00TEi4Pv061XRgtie+H8lQCZrAexm+ujmO8PYb24KQlY0bnwOu/BhWZbGkfaIABlg=: timestamp=2021-06-04T15:39:48.663+0200 | |
2021-06-04T15:39:48.664+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:48.664+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:48.665+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:48.665+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:39:48.665+0200 [TRACE] statemgr.Filesystem: have already backed up original terraform.tfstate to terraform.tfstate.backup on a previous write | |
2021-06-04T15:39:48.665+0200 [TRACE] statemgr.Filesystem: state has changed since last snapshot, so incrementing serial to 25 | |
2021-06-04T15:39:48.665+0200 [TRACE] statemgr.Filesystem: writing snapshot at terraform.tfstate | |
2021-06-04T15:39:48.668+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:39:48.668+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodeApplyableResourceInstance) | |
2021-06-04T15:39:48.668+0200 [TRACE] readDiff: Read Create change from plan for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:48.668+0200 [TRACE] readResourceInstanceState: reading state for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:48.668+0200 [TRACE] readResourceInstanceState: no state present for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:48.668+0200 [TRACE] readDiff: Read Create change from plan for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:48.669+0200 [TRACE] Re-validating config for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:48.669+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:39:48.670+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:39:48.672+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_dms_endpoint.endpoint, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .s3_settings[0].compression_type: planned value cty.StringVal("NONE") for a non-computed attribute | |
- .s3_settings[0].csv_delimiter: planned value cty.StringVal(",") for a non-computed attribute | |
- .s3_settings[0].csv_row_delimiter: planned value cty.StringVal("\\n") for a non-computed attribute | |
- .s3_settings[0].date_partition_enabled: planned value cty.False for a non-computed attribute | |
2021-06-04T15:39:48.672+0200 [TRACE] checkPlannedChange: Verifying that actual change (action Create) matches planned change (action Create) | |
2021-06-04T15:39:48.672+0200 [TRACE] readResourceInstanceState: reading state for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:48.672+0200 [TRACE] readResourceInstanceState: no state present for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:48.673+0200 [INFO] Starting apply for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:48.673+0200 [DEBUG] aws_dms_endpoint.endpoint: applying the planned Create change | |
2021-06-04T15:39:48.673+0200 [TRACE] GRPCProvider: ApplyResourceChange | |
2021-06-04T15:39:48.674+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] setting computed for "tags_all" from ComputedKeys: timestamp=2021-06-04T15:39:48.674+0200 | |
2021-06-04T15:39:48.674+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] DMS create endpoint: { | |
EndpointIdentifier: "dummy-endpoint", | |
EndpointType: "target", | |
EngineName: "s3", | |
ExtraConnectionAttributes: "parquetTimestampInMillisecond=true;CdcPath=cdc;dataFormat=parquet;PreserveTransactions=true;includeOpForFullLoad=true;timestampColumnName=timestamp;parquetVersion=PARQUET_2_0;bucketName=reproducible-bucket20210604133920264300000002;bucketPrefix=some/prefix;datePartitionEnabled=true", | |
S3Settings: { | |
BucketFolder: "", | |
BucketName: "", | |
CompressionType: "NONE", | |
CsvDelimiter: ",", | |
CsvRowDelimiter: "\\n", | |
DatePartitionEnabled: false, | |
ExternalTableDefinition: "", | |
ServiceAccessRoleArn: "arn:aws:iam::123123123123:role/terraform-20210604133920257700000001" | |
}, | |
Tags: [] | |
}: timestamp=2021-06-04T15:39:48.674+0200 | |
2021-06-04T15:39:48.674+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:39:48.674+0200 | |
2021-06-04T15:39:48.675+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:48 [DEBUG] [aws-sdk-go] DEBUG: Request dms/CreateEndpoint Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: dms.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 672 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/dms/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=1fbb9899a822b83b6aa933d8ce418154a73311d1a759724bf4ce71e13caeaca2 | |
Content-Type: application/x-amz-json-1.1 | |
X-Amz-Date: 20210604T133948Z | |
X-Amz-Target: AmazonDMSv20160101.CreateEndpoint | |
Accept-Encoding: gzip | |
{"EndpointIdentifier":"dummy-endpoint","EndpointType":"target","EngineName":"s3","ExtraConnectionAttributes":"parquetTimestampInMillisecond=true;CdcPath=cdc;dataFormat=parquet;PreserveTransactions=true;includeOpForFullLoad=true;timestampColumnName=timestamp;parquetVersion=PARQUET_2_0;bucketName=reproducible-bucket20210604133920264300000002;bucketPrefix=some/prefix;datePartitionEnabled=true","S3Settings":{"BucketFolder":"","BucketName":"","CompressionType":"NONE","CsvDelimiter":",","CsvRowDelimiter":"\\n","DatePartitionEnabled":false,"ExternalTableDefinition":"","ServiceAccessRoleArn":"arn:aws:iam::123123123123:role/terraform-20210604133920257700000001"},"Tags":[]} | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:48.674+0200 | |
2021-06-04T15:39:51.880+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:51 [DEBUG] [aws-sdk-go] DEBUG: Response dms/CreateEndpoint Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 1190 | |
Content-Type: application/x-amz-json-1.1 | |
Date: Fri, 04 Jun 2021 13:39:51 GMT | |
X-Amzn-Requestid: 7009bd0c-de8b-4c6d-86f3-76450a0e8249 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:51.879+0200 | |
2021-06-04T15:39:51.880+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:51 [DEBUG] [aws-sdk-go] {"Endpoint":{"EndpointArn":"arn:aws:dms:eu-central-1:123123123123:endpoint:TLO6AYVP65TGYASSL23HVAJDW5QDVCVJH54YULQ","EndpointIdentifier":"dummy-endpoint","EndpointType":"TARGET","EngineDisplayName":"Amazon S3","EngineName":"s3","ExternalTableDefinition":"","ExtraConnectionAttributes":"bucketName=reproducible-bucket20210604133920264300000002;bucketPrefix=some/prefix;CdcPath=cdc;compressionType=NONE;csvDelimiter=,;csvRowDelimiter=\\n;dataFormat=parquet;datePartitionEnabled=true;includeOpForFullLoad=true;parquetTimestampInMillisecond=true;parquetVersion=PARQUET_2_0;PreserveTransactions=true;timestampColumnName=timestamp;","ReceiveTransferredFiles":false,"S3Settings":{"BucketFolder":"","BucketName":"reproducible-bucket20210604133920264300000002","CdcPath":"cdc","CompressionType":"NONE","CsvDelimiter":",","CsvRowDelimiter":"\\n","DatePartitionEnabled":true,"EnableStatistics":true,"ExternalTableDefinition":"","PreserveTransactions":true,"ServiceAccessRoleArn":"arn:aws:iam::123123123123:role/terraform-20210604133920257700000001"},"ServiceAccessRoleArn":"arn:aws:iam::123123123123:role/terraform-20210604133920257700000001","SslMode":"none","Status":"active","TransferFiles":false}}: timestamp=2021-06-04T15:39:51.879+0200 | |
2021-06-04T15:39:51.883+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:51 [DEBUG] [aws-sdk-go] DEBUG: Request dms/DescribeEndpoints Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: dms.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 64 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/dms/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=8404a7f80c9e57e05ddf0d74b228d8d716d7b0147539ab932b8f724a7457d8b2 | |
Content-Type: application/x-amz-json-1.1 | |
X-Amz-Date: 20210604T133951Z | |
X-Amz-Target: AmazonDMSv20160101.DescribeEndpoints | |
Accept-Encoding: gzip | |
{"Filters":[{"Name":"endpoint-id","Values":["dummy-endpoint"]}]} | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:51.883+0200 | |
2021-06-04T15:39:52.106+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:52.106+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:52.106+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:55.031+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:55 [DEBUG] [aws-sdk-go] DEBUG: Response dms/DescribeEndpoints Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 1193 | |
Content-Type: application/x-amz-json-1.1 | |
Date: Fri, 04 Jun 2021 13:39:55 GMT | |
X-Amzn-Requestid: 14704cec-3595-4af2-b0be-84f23f374d9d | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:55.030+0200 | |
2021-06-04T15:39:55.031+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:55 [DEBUG] [aws-sdk-go] {"Endpoints":[{"EndpointArn":"arn:aws:dms:eu-central-1:123123123123:endpoint:TLO6AYVP65TGYASSL23HVAJDW5QDVCVJH54YULQ","EndpointIdentifier":"dummy-endpoint","EndpointType":"TARGET","EngineDisplayName":"Amazon S3","EngineName":"s3","ExternalTableDefinition":"","ExtraConnectionAttributes":"bucketName=reproducible-bucket20210604133920264300000002;bucketPrefix=some/prefix;CdcPath=cdc;compressionType=NONE;csvDelimiter=,;csvRowDelimiter=\\n;dataFormat=parquet;datePartitionEnabled=true;includeOpForFullLoad=true;parquetTimestampInMillisecond=true;parquetVersion=PARQUET_2_0;PreserveTransactions=true;timestampColumnName=timestamp;","ReceiveTransferredFiles":false,"S3Settings":{"BucketFolder":"","BucketName":"reproducible-bucket20210604133920264300000002","CdcPath":"cdc","CompressionType":"NONE","CsvDelimiter":",","CsvRowDelimiter":"\\n","DatePartitionEnabled":true,"EnableStatistics":true,"ExternalTableDefinition":"","PreserveTransactions":true,"ServiceAccessRoleArn":"arn:aws:iam::123123123123:role/terraform-20210604133920257700000001"},"ServiceAccessRoleArn":"arn:aws:iam::123123123123:role/terraform-20210604133920257700000001","SslMode":"none","Status":"active","TransferFiles":false}]}: timestamp=2021-06-04T15:39:55.030+0200 | |
2021-06-04T15:39:55.031+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:55 [DEBUG] [aws-sdk-go] DEBUG: Request dms/ListTagsForResource Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: dms.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 104 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/dms/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=23a8bbce1b736f656d46cb805a931261d31d3a85360fe7793fb82cd3c24405bf | |
Content-Type: application/x-amz-json-1.1 | |
X-Amz-Date: 20210604T133955Z | |
X-Amz-Target: AmazonDMSv20160101.ListTagsForResource | |
Accept-Encoding: gzip | |
{"ResourceArn":"arn:aws:dms:eu-central-1:123123123123:endpoint:TLO6AYVP65TGYASSL23HVAJDW5QDVCVJH54YULQ"} | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:55.031+0200 | |
2021-06-04T15:39:57.135+0200 [TRACE] dag/walk: vertex "root" is waiting for "meta.count-boundary (EachMode fixup)" | |
2021-06-04T15:39:57.135+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:57.135+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:39:58.163+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:58 [DEBUG] [aws-sdk-go] DEBUG: Response dms/ListTagsForResource Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 14 | |
Content-Type: application/x-amz-json-1.1 | |
Date: Fri, 04 Jun 2021 13:39:57 GMT | |
X-Amzn-Requestid: 069e982b-a9b3-4d28-a8f4-e38d4d8583a0 | |
-----------------------------------------------------: timestamp=2021-06-04T15:39:58.162+0200 | |
2021-06-04T15:39:58.164+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:39:58 [DEBUG] [aws-sdk-go] {"TagList":[]}: timestamp=2021-06-04T15:39:58.163+0200 | |
2021-06-04T15:39:58.165+0200 [WARN] Provider "provider[\"registry.terraform.io/hashicorp/aws\"]" produced an unexpected new value for aws_dms_endpoint.endpoint, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .extra_connection_attributes: was cty.StringVal("parquetTimestampInMillisecond=true;CdcPath=cdc;dataFormat=parquet;PreserveTransactions=true;includeOpForFullLoad=true;timestampColumnName=timestamp;parquetVersion=PARQUET_2_0;bucketName=reproducible-bucket20210604133920264300000002;bucketPrefix=some/prefix;datePartitionEnabled=true"), but now cty.StringVal("bucketName=reproducible-bucket20210604133920264300000002;bucketPrefix=some/prefix;CdcPath=cdc;compressionType=NONE;csvDelimiter=,;csvRowDelimiter=\\n;dataFormat=parquet;datePartitionEnabled=true;includeOpForFullLoad=true;parquetTimestampInMillisecond=true;parquetVersion=PARQUET_2_0;PreserveTransactions=true;timestampColumnName=timestamp;") | |
- .s3_settings[0].date_partition_enabled: was cty.False, but now cty.True | |
- .s3_settings[0].external_table_definition: was null, but now cty.StringVal("") | |
- .s3_settings[0].bucket_folder: was null, but now cty.StringVal("") | |
- .s3_settings[0].bucket_name: was null, but now cty.StringVal("reproducible-bucket20210604133920264300000002") | |
2021-06-04T15:39:58.165+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:58.165+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:58.166+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:58.166+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:39:58.167+0200 [TRACE] statemgr.Filesystem: have already backed up original terraform.tfstate to terraform.tfstate.backup on a previous write | |
2021-06-04T15:39:58.168+0200 [TRACE] statemgr.Filesystem: state has changed since last snapshot, so incrementing serial to 26 | |
2021-06-04T15:39:58.168+0200 [TRACE] statemgr.Filesystem: writing snapshot at terraform.tfstate | |
2021-06-04T15:39:58.186+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:39:58.186+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021-06-04T15:39:58.186+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021-06-04T15:39:58.186+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021-06-04T15:39:58.186+0200 [TRACE] GRPCProvider: Close | |
2021-06-04T15:39:58.187+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing" | |
2021-06-04T15:39:58.199+0200 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479133 | |
2021-06-04T15:39:58.199+0200 [DEBUG] provider: plugin exited | |
2021-06-04T15:39:58.199+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": visit complete | |
2021-06-04T15:39:58.199+0200 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021-06-04T15:39:58.199+0200 [TRACE] vertex "root": visit complete | |
2021-06-04T15:39:58.199+0200 [TRACE] statemgr.Filesystem: have already backed up original terraform.tfstate to terraform.tfstate.backup on a previous write | |
2021-06-04T15:39:58.200+0200 [TRACE] statemgr.Filesystem: state has changed since last snapshot, so incrementing serial to 27 | |
2021-06-04T15:39:58.200+0200 [TRACE] statemgr.Filesystem: writing snapshot at terraform.tfstate | |
2021-06-04T15:39:58.203+0200 [TRACE] statemgr.Filesystem: removing lock metadata file .terraform.tfstate.lock.info | |
2021-06-04T15:39:58.203+0200 [TRACE] statemgr.Filesystem: unlocking terraform.tfstate using fcntl flock |
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
2021-06-04T15:40:15.886+0200 [DEBUG] Adding temp file log sink: /tmp/terraform-log876649296 | |
2021-06-04T15:40:15.887+0200 [INFO] Terraform version: 0.15.5 | |
2021-06-04T15:40:15.887+0200 [INFO] Go runtime version: go1.16.4 | |
2021-06-04T15:40:15.887+0200 [INFO] CLI args: []string{"/home/maurice/bin/terraform", "plan"} | |
2021-06-04T15:40:15.887+0200 [TRACE] Stdout is a terminal of width 272 | |
2021-06-04T15:40:15.887+0200 [TRACE] Stderr is a terminal of width 272 | |
2021-06-04T15:40:15.887+0200 [TRACE] Stdin is a terminal | |
2021-06-04T15:40:15.887+0200 [DEBUG] Attempting to open CLI config file: /home/maurice/.terraformrc | |
2021-06-04T15:40:15.887+0200 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2021-06-04T15:40:15.887+0200 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021-06-04T15:40:15.887+0200 [DEBUG] ignoring non-existing provider search directory /home/maurice/.terraform.d/plugins | |
2021-06-04T15:40:15.887+0200 [DEBUG] ignoring non-existing provider search directory /home/maurice/.local/share/terraform/plugins | |
2021-06-04T15:40:15.887+0200 [DEBUG] ignoring non-existing provider search directory /usr/share/ubuntu/terraform/plugins | |
2021-06-04T15:40:15.887+0200 [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins | |
2021-06-04T15:40:15.887+0200 [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins | |
2021-06-04T15:40:15.887+0200 [DEBUG] ignoring non-existing provider search directory /var/lib/snapd/desktop/terraform/plugins | |
2021-06-04T15:40:15.888+0200 [INFO] CLI command args: []string{"plan"} | |
2021-06-04T15:40:15.890+0200 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2021-06-04T15:40:15.890+0200 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2021-06-04T15:40:15.890+0200 [DEBUG] New state was assigned lineage "c0c1b1a5-d28e-e648-5d57-e5c98c8c027c" | |
2021-06-04T15:40:15.890+0200 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend) | |
2021-06-04T15:40:15.890+0200 [TRACE] Meta.Backend: instantiated backend of type <nil> | |
2021-06-04T15:40:15.892+0200 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021-06-04T15:40:15.892+0200 [TRACE] getproviders.SearchLocalDirectory: found registry.terraform.io/hashicorp/aws v3.44.0 for linux_amd64 at .terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64 | |
2021-06-04T15:40:15.892+0200 [TRACE] providercache.fillMetaCache: including .terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64 as a candidate package for registry.terraform.io/hashicorp/aws 3.44.0 | |
2021-06-04T15:40:16.750+0200 [DEBUG] checking for provisioner in "." | |
2021-06-04T15:40:16.750+0200 [DEBUG] checking for provisioner in "/home/maurice/bin" | |
2021-06-04T15:40:16.751+0200 [INFO] Failed to read plugin lock file .terraform/plugins/linux_amd64/lock.json: open .terraform/plugins/linux_amd64/lock.json: no such file or directory | |
2021-06-04T15:40:16.751+0200 [TRACE] Meta.Backend: backend <nil> does not support operations, so wrapping it in a local backend | |
2021-06-04T15:40:16.751+0200 [INFO] backend/local: starting Plan operation | |
2021-06-04T15:40:16.751+0200 [TRACE] backend/local: requesting state manager for workspace "default" | |
2021-06-04T15:40:16.751+0200 [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 | |
2021-06-04T15:40:16.751+0200 [TRACE] backend/local: requesting state lock for workspace "default" | |
2021-06-04T15:40:16.751+0200 [TRACE] statemgr.Filesystem: preparing to manage state snapshots at terraform.tfstate | |
2021-06-04T15:40:16.752+0200 [TRACE] statemgr.Filesystem: existing snapshot has lineage "2b74f25b-578b-b03f-f385-19cc9acfb1ab" serial 27 | |
2021-06-04T15:40:16.752+0200 [TRACE] statemgr.Filesystem: locking terraform.tfstate using fcntl flock | |
2021-06-04T15:40:16.752+0200 [TRACE] statemgr.Filesystem: writing lock metadata to .terraform.tfstate.lock.info | |
2021-06-04T15:40:16.752+0200 [TRACE] backend/local: reading remote state for workspace "default" | |
2021-06-04T15:40:16.753+0200 [TRACE] statemgr.Filesystem: reading latest snapshot from terraform.tfstate | |
2021-06-04T15:40:16.753+0200 [TRACE] statemgr.Filesystem: read snapshot with lineage "2b74f25b-578b-b03f-f385-19cc9acfb1ab" serial 27 | |
2021-06-04T15:40:16.753+0200 [TRACE] backend/local: retrieving local state snapshot for workspace "default" | |
2021-06-04T15:40:16.753+0200 [TRACE] backend/local: building context for current working directory | |
2021-06-04T15:40:16.754+0200 [TRACE] terraform.NewContext: starting | |
2021-06-04T15:40:16.754+0200 [TRACE] terraform.NewContext: loading provider schemas | |
2021-06-04T15:40:16.754+0200 [TRACE] LoadSchemas: retrieving schema for provider type "registry.terraform.io/hashicorp/aws" | |
2021-06-04T15:40:16.754+0200 [DEBUG] created provider logger: level=trace | |
2021-06-04T15:40:16.754+0200 [INFO] provider: configuring client automatic mTLS | |
2021-06-04T15:40:16.797+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5] | |
2021-06-04T15:40:16.797+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479220 | |
2021-06-04T15:40:16.797+0200 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 | |
2021-06-04T15:40:16.841+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: configuring server automatic mTLS: timestamp=2021-06-04T15:40:16.841+0200 | |
2021-06-04T15:40:16.883+0200 [DEBUG] provider: using plugin: version=5 | |
2021-06-04T15:40:16.883+0200 [DEBUG] provider.terraform-provider-aws_v3.44.0_x5: plugin address: network=unix address=/tmp/plugin904417375 timestamp=2021-06-04T15:40:16.882+0200 | |
2021-06-04T15:40:16.940+0200 [TRACE] GRPCProvider: GetProviderSchema | |
2021-06-04T15:40:16.940+0200 [TRACE] provider.stdio: waiting for stdio data | |
2021-06-04T15:40:17.058+0200 [TRACE] GRPCProvider: Close | |
2021-06-04T15:40:17.059+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing" | |
2021-06-04T15:40:17.063+0200 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479220 | |
2021-06-04T15:40:17.063+0200 [DEBUG] provider: plugin exited | |
2021-06-04T15:40:17.063+0200 [TRACE] terraform.NewContext: complete | |
2021-06-04T15:40:17.063+0200 [TRACE] backend/local: finished building terraform.Context | |
2021-06-04T15:40:17.063+0200 [TRACE] backend/local: requesting interactive input, if necessary | |
2021-06-04T15:40:17.063+0200 [TRACE] Context.Input: Prompting for provider arguments | |
2021-06-04T15:40:17.063+0200 [TRACE] Context.Input: Provider provider.aws declared at main.tf:10,1-15 | |
2021-06-04T15:40:17.064+0200 [TRACE] Context.Input: Input for provider.aws: map[string]cty.Value{} | |
2021-06-04T15:40:17.064+0200 [TRACE] backend/local: running validation operation | |
2021-06-04T15:40:17.064+0200 [INFO] terraform: building graph: GraphTypeValidate | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] ConfigTransformer: Starting for path: | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
------ | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] StateTransformer: state is empty, so nothing to do | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_iam_role.dms_s3_writer" (*terraform.NodeValidatableResource) config from main.tf:19,1-40 | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_dms_endpoint.endpoint" (*terraform.NodeValidatableResource) config from main.tf:35,1-39 | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_dms_endpoint.endpoint | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_s3_bucket.target_bucket" (*terraform.NodeValidatableResource) config from main.tf:14,1-41 | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_s3_bucket.target_bucket | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/hashicorp/aws\"]" provider configuration from main.tf:10,1-15 | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:17.064+0200 [DEBUG] ProviderTransformer: "aws_iam_role.dms_s3_writer" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.064+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_dms_endpoint.endpoint | |
2021-06-04T15:40:17.064+0200 [DEBUG] ProviderTransformer: "aws_dms_endpoint.endpoint" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.064+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_s3_bucket.target_bucket | |
2021-06-04T15:40:17.064+0200 [DEBUG] ProviderTransformer: "aws_s3_bucket.target_bucket" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_dms_endpoint.endpoint | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_s3_bucket.target_bucket | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:17.064+0200 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021-06-04T15:40:17.064+0200 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021-06-04T15:40:17.064+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:40:17.064+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [] | |
2021-06-04T15:40:17.065+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint" references: [aws_s3_bucket.target_bucket aws_iam_role.dms_s3_writer] | |
2021-06-04T15:40:17.065+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket" references: [] | |
2021-06-04T15:40:17.065+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer" references: [] | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.attachDataResourceDependsOnTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.attachDataResourceDependsOnTransformer (no changes) | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:40:17.065+0200 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021-06-04T15:40:17.065+0200 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
aws_iam_role.dms_s3_writer - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint - *terraform.NodeValidatableResource | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:40:17.065+0200 [DEBUG] Starting graph walk: walkValidate | |
2021-06-04T15:40:17.065+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-06-04T15:40:17.066+0200 [DEBUG] created provider logger: level=trace | |
2021-06-04T15:40:17.066+0200 [INFO] provider: configuring client automatic mTLS | |
2021-06-04T15:40:17.113+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5] | |
2021-06-04T15:40:17.114+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479228 | |
2021-06-04T15:40:17.114+0200 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 | |
2021-06-04T15:40:17.160+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: configuring server automatic mTLS: timestamp=2021-06-04T15:40:17.160+0200 | |
2021-06-04T15:40:17.203+0200 [DEBUG] provider.terraform-provider-aws_v3.44.0_x5: plugin address: address=/tmp/plugin583202992 network=unix timestamp=2021-06-04T15:40:17.203+0200 | |
2021-06-04T15:40:17.203+0200 [DEBUG] provider: using plugin: version=5 | |
2021-06-04T15:40:17.269+0200 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/hashicorp/aws\"]" provider for provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.269+0200 [TRACE] buildProviderConfig for provider["registry.terraform.io/hashicorp/aws"]: using explicit config only | |
2021-06-04T15:40:17.269+0200 [TRACE] GRPCProvider: GetProviderSchema | |
2021-06-04T15:40:17.269+0200 [TRACE] provider.stdio: waiting for stdio data | |
2021-06-04T15:40:17.389+0200 [TRACE] GRPCProvider: ValidateProviderConfig | |
2021-06-04T15:40:17.489+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": visit complete | |
2021-06-04T15:40:17.489+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodeValidatableResource) | |
2021-06-04T15:40:17.489+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodeValidatableResource) | |
2021-06-04T15:40:17.489+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:40:17.490+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:40:17.490+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:40:17.491+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:40:17.491+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodeValidatableResource) | |
2021-06-04T15:40:17.491+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:40:17.491+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:40:17.491+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021-06-04T15:40:17.491+0200 [TRACE] GRPCProvider: Close | |
2021-06-04T15:40:17.492+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021-06-04T15:40:17.492+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021-06-04T15:40:17.492+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing" | |
2021-06-04T15:40:17.497+0200 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479228 | |
2021-06-04T15:40:17.497+0200 [DEBUG] provider: plugin exited | |
2021-06-04T15:40:17.497+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": visit complete | |
2021-06-04T15:40:17.497+0200 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021-06-04T15:40:17.497+0200 [TRACE] vertex "root": visit complete | |
2021-06-04T15:40:17.497+0200 [INFO] backend/local: plan calling Plan | |
2021-06-04T15:40:17.497+0200 [INFO] terraform: building graph: GraphTypePlan | |
2021-06-04T15:40:17.497+0200 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021-06-04T15:40:17.497+0200 [TRACE] ConfigTransformer: Starting for path: | |
2021-06-04T15:40:17.497+0200 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
------ | |
2021-06-04T15:40:17.497+0200 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021-06-04T15:40:17.497+0200 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021-06-04T15:40:17.497+0200 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021-06-04T15:40:17.497+0200 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021-06-04T15:40:17.497+0200 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021-06-04T15:40:17.497+0200 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021-06-04T15:40:17.497+0200 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] StateTransformer: creating nodes for deposed instance objects only | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandPlannableResource) config from main.tf:14,1-41 | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandPlannableResource) config from main.tf:19,1-40 | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachResourceConfigTransformer: attaching to "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandPlannableResource) config from main.tf:35,1-39 | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/hashicorp/aws\"]" provider configuration from main.tf:10,1-15 | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:40:17.498+0200 [DEBUG] ProviderTransformer: "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.498+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:40:17.498+0200 [DEBUG] ProviderTransformer: "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.498+0200 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/hashicorp/aws"] serving aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:40:17.498+0200 [DEBUG] ProviderTransformer: "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_s3_bucket.target_bucket (expand) | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_iam_role.dms_s3_writer (expand) | |
2021-06-04T15:40:17.498+0200 [TRACE] AttachSchemaTransformer: attaching resource schema to aws_dms_endpoint.endpoint (expand) | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021-06-04T15:40:17.498+0200 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021-06-04T15:40:17.498+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:40:17.498+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket (expand)" references: [] | |
2021-06-04T15:40:17.498+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer (expand)" references: [] | |
2021-06-04T15:40:17.499+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint (expand)" references: [aws_s3_bucket.target_bucket (expand) aws_iam_role.dms_s3_writer (expand)] | |
2021-06-04T15:40:17.499+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [] | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] AttachDependenciesTransformer: aws_iam_role.dms_s3_writer depends on [] | |
2021-06-04T15:40:17.499+0200 [TRACE] AttachDependenciesTransformer: aws_dms_endpoint.endpoint depends on [aws_iam_role.dms_s3_writer aws_s3_bucket.target_bucket] | |
2021-06-04T15:40:17.499+0200 [TRACE] AttachDependenciesTransformer: aws_s3_bucket.target_bucket depends on [] | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.attachDataResourceDependsOnTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.attachDataResourceDependsOnTransformer (no changes) | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] ForcedCBDTransformer: "aws_dms_endpoint.endpoint (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021-06-04T15:40:17.499+0200 [TRACE] ForcedCBDTransformer: "aws_s3_bucket.target_bucket (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021-06-04T15:40:17.499+0200 [TRACE] ForcedCBDTransformer: "aws_iam_role.dms_s3_writer (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
------ | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:40:17.499+0200 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021-06-04T15:40:17.499+0200 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
aws_iam_role.dms_s3_writer (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
aws_s3_bucket.target_bucket (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/hashicorp/aws"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
aws_dms_endpoint.endpoint (expand) - *terraform.nodeExpandPlannableResource | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/hashicorp/aws"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021-06-04T15:40:17.499+0200 [DEBUG] Starting graph walk: walkPlan | |
2021-06-04T15:40:17.500+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-06-04T15:40:17.500+0200 [DEBUG] created provider logger: level=trace | |
2021-06-04T15:40:17.500+0200 [INFO] provider: configuring client automatic mTLS | |
2021-06-04T15:40:17.538+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5] | |
2021-06-04T15:40:17.538+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479236 | |
2021-06-04T15:40:17.538+0200 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 | |
2021-06-04T15:40:17.583+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: configuring server automatic mTLS: timestamp=2021-06-04T15:40:17.583+0200 | |
2021-06-04T15:40:17.626+0200 [DEBUG] provider: using plugin: version=5 | |
2021-06-04T15:40:17.626+0200 [DEBUG] provider.terraform-provider-aws_v3.44.0_x5: plugin address: address=/tmp/plugin026968764 network=unix timestamp=2021-06-04T15:40:17.626+0200 | |
2021-06-04T15:40:17.685+0200 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/hashicorp/aws\"]" provider for provider["registry.terraform.io/hashicorp/aws"] | |
2021-06-04T15:40:17.685+0200 [TRACE] buildProviderConfig for provider["registry.terraform.io/hashicorp/aws"]: using explicit config only | |
2021-06-04T15:40:17.685+0200 [TRACE] GRPCProvider: GetProviderSchema | |
2021-06-04T15:40:17.685+0200 [TRACE] provider.stdio: waiting for stdio data | |
2021-06-04T15:40:17.798+0200 [TRACE] GRPCProvider: ValidateProviderConfig | |
2021-06-04T15:40:17.904+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/hashicorp/aws\"]" changed the config value, but that value is unused | |
2021-06-04T15:40:17.904+0200 [TRACE] GRPCProvider: ConfigureProvider | |
2021-06-04T15:40:17.906+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:17 [INFO] AWS Auth provider used: "SharedCredentialsProvider": timestamp=2021-06-04T15:40:17.906+0200 | |
2021-06-04T15:40:17.908+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:17 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-06-04T15:40:17.908+0200 | |
2021-06-04T15:40:17.909+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:17 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: sts.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 43 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=0b8a062db03c3f2da6934c9ad11353d3fb3def8da1f11c719a0bf9f1b0b2f4b7 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T134017Z | |
Accept-Encoding: gzip | |
Action=GetCallerIdentity&Version=2011-06-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:17.908+0200 | |
2021-06-04T15:40:21.321+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 407 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:40:20 GMT | |
X-Amzn-Requestid: 5191d86e-1828-4192-8893-f0b59395e63b | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:21.320+0200 | |
2021-06-04T15:40:21.321+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
<GetCallerIdentityResult> | |
<Arn>arn:aws:iam::123123123123:user/myname</Arn> | |
<UserId>AIDA2BFBC5RB4SXNVRQDI</UserId> | |
<Account>123123123123</Account> | |
</GetCallerIdentityResult> | |
<ResponseMetadata> | |
<RequestId>5191d86e-1828-4192-8893-f0b59395e63b</RequestId> | |
</ResponseMetadata> | |
</GetCallerIdentityResponse>: timestamp=2021-06-04T15:40:21.320+0200 | |
2021-06-04T15:40:21.321+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-06-04T15:40:21.320+0200 | |
2021-06-04T15:40:21.321+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: sts.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 43 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=904176a9c9cab5c8737627162e92a027b379b0370c7d395742a52ed3957a43c6 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T134021Z | |
Accept-Encoding: gzip | |
Action=GetCallerIdentity&Version=2011-06-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:21.321+0200 | |
2021-06-04T15:40:21.781+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 407 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:40:21 GMT | |
X-Amzn-Requestid: 2dae7529-1b81-466c-b425-2d50b82b00fd | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:21.781+0200 | |
2021-06-04T15:40:21.781+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | |
<GetCallerIdentityResult> | |
<Arn>arn:aws:iam::123123123123:user/myname</Arn> | |
<UserId>AIDA2BFBC5RB4SXNVRQDI</UserId> | |
<Account>123123123123</Account> | |
</GetCallerIdentityResult> | |
<ResponseMetadata> | |
<RequestId>2dae7529-1b81-466c-b425-2d50b82b00fd</RequestId> | |
</ResponseMetadata> | |
</GetCallerIdentityResponse>: timestamp=2021-06-04T15:40:21.781+0200 | |
2021-06-04T15:40:21.784+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: ec2.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 87 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=28a2474d0df9f7f84a060d3215799e303a111aedb7581edbe7fec44ab1799289 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T134021Z | |
Accept-Encoding: gzip | |
Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:21.784+0200 | |
2021-06-04T15:40:21.981+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 540 | |
Cache-Control: no-cache, no-store | |
Content-Type: text/xml;charset=UTF-8 | |
Date: Fri, 04 Jun 2021 13:40:21 GMT | |
Server: AmazonEC2 | |
Strict-Transport-Security: max-age=31536000; includeSubDomains | |
X-Amzn-Requestid: a8dcab05-82be-4685-9afd-55972d4249ca | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:21.981+0200 | |
2021-06-04T15:40:21.982+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:21 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/"> | |
<requestId>a8dcab05-82be-4685-9afd-55972d4249ca</requestId> | |
<accountAttributeSet> | |
<item> | |
<attributeName>supported-platforms</attributeName> | |
<attributeValueSet> | |
<item> | |
<attributeValue>VPC</attributeValue> | |
</item> | |
</attributeValueSet> | |
</item> | |
</accountAttributeSet> | |
</DescribeAccountAttributesResponse>: timestamp=2021-06-04T15:40:21.981+0200 | |
2021-06-04T15:40:21.983+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"]": visit complete | |
2021-06-04T15:40:21.984+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021-06-04T15:40:21.985+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": expanding dynamic subgraph | |
2021-06-04T15:40:21.986+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021-06-04T15:40:21.986+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": expanding dynamic subgraph | |
2021-06-04T15:40:21.986+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": entering dynamic subgraph | |
2021-06-04T15:40:21.987+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodePlannableResource) | |
2021-06-04T15:40:21.987+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": entering dynamic subgraph | |
2021-06-04T15:40:21.988+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodePlannableResource) | |
2021-06-04T15:40:21.988+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": expanding dynamic subgraph | |
2021-06-04T15:40:21.989+0200 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021-06-04T15:40:21.989+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": expanding dynamic subgraph | |
2021-06-04T15:40:21.989+0200 [TRACE] ResourceCountTransformer: adding aws_s3_bucket.target_bucket as *terraform.NodePlannableResourceInstance | |
2021-06-04T15:40:21.989+0200 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_s3_bucket.target_bucket - *terraform.NodePlannableResourceInstance | |
------ | |
2021-06-04T15:40:21.989+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021-06-04T15:40:21.990+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021-06-04T15:40:21.990+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:40:21.990+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:40:21.990+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:40:21.991+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:40:21.991+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:40:21.992+0200 [DEBUG] ReferenceTransformer: "aws_s3_bucket.target_bucket" references: [] | |
2021-06-04T15:40:21.993+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021-06-04T15:40:21.994+0200 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021-06-04T15:40:21.994+0200 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021-06-04T15:40:21.994+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": entering dynamic subgraph | |
2021-06-04T15:40:21.994+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": starting visit (*terraform.NodePlannableResourceInstance) | |
2021-06-04T15:40:21.995+0200 [TRACE] readResourceInstanceState: reading state for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:21.995+0200 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021-06-04T15:40:21.995+0200 [TRACE] ResourceCountTransformer: adding aws_iam_role.dms_s3_writer as *terraform.NodePlannableResourceInstance | |
2021-06-04T15:40:21.995+0200 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_iam_role.dms_s3_writer - *terraform.NodePlannableResourceInstance | |
------ | |
2021-06-04T15:40:21.996+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021-06-04T15:40:21.996+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021-06-04T15:40:21.996+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:40:21.996+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:40:21.996+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:40:21.996+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:40:21.997+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:40:21.997+0200 [DEBUG] ReferenceTransformer: "aws_iam_role.dms_s3_writer" references: [] | |
2021-06-04T15:40:21.997+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021-06-04T15:40:21.997+0200 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021-06-04T15:40:21.997+0200 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021-06-04T15:40:21.997+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": entering dynamic subgraph | |
2021-06-04T15:40:21.998+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": starting visit (*terraform.NodePlannableResourceInstance) | |
2021-06-04T15:40:21.998+0200 [TRACE] readResourceInstanceState: reading state for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:21.999+0200 [TRACE] upgradeResourceState: schema version of aws_iam_role.dms_s3_writer is still 0; calling provider "aws" for any other minor fixups | |
2021-06-04T15:40:21.999+0200 [TRACE] GRPCProvider: UpgradeResourceState | |
2021-06-04T15:40:21.999+0200 [TRACE] upgradeResourceState: schema version of aws_s3_bucket.target_bucket is still 0; calling provider "aws" for any other minor fixups | |
2021-06-04T15:40:21.999+0200 [TRACE] GRPCProvider: UpgradeResourceState | |
2021-06-04T15:40:22.003+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to prevRunState for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:22.003+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:22.004+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:22.004+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to prevRunState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:22.004+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:22.005+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:22.005+0200 [TRACE] NodeAbstractResourceInstance.refresh for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:22.006+0200 [TRACE] GRPCProvider: ReadResource | |
2021-06-04T15:40:22.009+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:22 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:22.009+0200 | |
2021-06-04T15:40:22.009+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:22 [DEBUG] [aws-sdk-go] DEBUG: Request s3/HeadBucket Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
HEAD / HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=9a44e929d44b5fa09ef70c58a5375449e49d4693ccc9a7453d668f042bea79b1 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134022Z | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:22.009+0200 | |
2021-06-04T15:40:22.010+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:22.010+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:22.010+0200 [TRACE] NodeAbstractResourceInstance.refresh for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:22.010+0200 [TRACE] GRPCProvider: ReadResource | |
2021-06-04T15:40:22.013+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:22 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:22.013+0200 | |
2021-06-04T15:40:22.014+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:22 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetRole Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: iam.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 79 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=6abb25de6c04e131565d1445436491b98795e0fc4c568b72697a26bea0c01c63 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T134022Z | |
Accept-Encoding: gzip | |
Action=GetRole&RoleName=terraform-20210604133920257700000001&Version=2010-05-08 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:22.014+0200 | |
2021-06-04T15:40:22.481+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:22 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetRole Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 879 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:40:22 GMT | |
X-Amzn-Requestid: 00a4bd88-5281-4584-9129-5fcc5e5358ce | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:22.480+0200 | |
2021-06-04T15:40:22.481+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:22 [DEBUG] [aws-sdk-go] <GetRoleResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/"> | |
<GetRoleResult> | |
<Role> | |
<Path>/</Path> | |
<AssumeRolePolicyDocument>%7B%22Version%22%3A%222012-10-17%22%2C%22Statement%22%3A%5B%7B%22Sid%22%3A%22%22%2C%22Effect%22%3A%22Allow%22%2C%22Principal%22%3A%7B%22Service%22%3A%22dms.amazonaws.com%22%7D%2C%22Action%22%3A%22sts%3AAssumeRole%22%7D%5D%7D</AssumeRolePolicyDocument> | |
<MaxSessionDuration>3600</MaxSessionDuration> | |
<RoleId>AROA2BFBC5RBRSNHN6SCH</RoleId> | |
<RoleLastUsed/> | |
<RoleName>terraform-20210604133920257700000001</RoleName> | |
<Arn>arn:aws:iam::123123123123:role/terraform-20210604133920257700000001</Arn> | |
<CreateDate>2021-06-04T13:39:20Z</CreateDate> | |
</Role> | |
</GetRoleResult> | |
<ResponseMetadata> | |
<RequestId>00a4bd88-5281-4584-9129-5fcc5e5358ce</RequestId> | |
</ResponseMetadata> | |
</GetRoleResponse>: timestamp=2021-06-04T15:40:22.480+0200 | |
2021-06-04T15:40:22.484+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:22 [DEBUG] [aws-sdk-go] DEBUG: Request iam/ListRolePolicies Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: iam.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 88 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=0e7e15baf89671f01fdd5f62f1cb9d6006156e98188e0a2437aa1f3300b87b9d | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T134022Z | |
Accept-Encoding: gzip | |
Action=ListRolePolicies&RoleName=terraform-20210604133920257700000001&Version=2010-05-08 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:22.484+0200 | |
2021-06-04T15:40:22.503+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "aws_iam_role.dms_s3_writer (expand)" | |
2021-06-04T15:40:22.503+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:22.503+0200 [TRACE] dag/walk: vertex "root" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" | |
2021-06-04T15:40:22.503+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:25.055+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] DEBUG: Response s3/HeadBucket Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:26 GMT | |
Server: AmazonS3 | |
X-Amz-Bucket-Region: eu-central-1 | |
X-Amz-Id-2: vaKwkDCWo+5lw0JrbYmAGYoegy3TgaFcS+GFk7mgrq0vGN3rihAeLYBVnMuH/lvv1zkBo3pfUgY= | |
X-Amz-Request-Id: FH8RQXACTS8SJGH0 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:25.055+0200 | |
2021-06-04T15:40:25.056+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go]: timestamp=2021-06-04T15:40:25.055+0200 | |
2021-06-04T15:40:25.056+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:25.055+0200 | |
2021-06-04T15:40:25.056+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketAcl Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?acl= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=72ef5af85e1c0deb98854524a39ea3e2d539e7736cd3dfc170cc8d0ac965c268 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134025Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:25.056+0200 | |
2021-06-04T15:40:25.164+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketAcl Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:26 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: tS/Wd4F40PIo9aXiTyjACJREwa2E2Alr8uxjUHKCwOIcvjEk8zeUiahwGBUz/MbPCdnvX3T4pnI= | |
X-Amz-Request-Id: FH8R125438M4FZ7C | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:25.164+0200 | |
2021-06-04T15:40:25.165+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<AccessControlPolicy xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Owner><ID>f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b</ID></Owner><AccessControlList><Grant><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser"><ID>f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b</ID></Grantee><Permission>FULL_CONTROL</Permission></Grant></AccessControlList></AccessControlPolicy>: timestamp=2021-06-04T15:40:25.164+0200 | |
2021-06-04T15:40:25.165+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] S3 bucket: reproducible-bucket20210604133920264300000002, read ACL grants policy: { | |
Grants: [{ | |
Grantee: { | |
ID: "f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b", | |
Type: "CanonicalUser" | |
}, | |
Permission: "FULL_CONTROL" | |
}], | |
Owner: { | |
ID: "f49c413d3526db11f5b7f60d413428d7fc56659e184ccadcbf6cb040f432dc2b" | |
} | |
}: timestamp=2021-06-04T15:40:25.164+0200 | |
2021-06-04T15:40:25.165+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:25.164+0200 | |
2021-06-04T15:40:25.165+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketCors Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?cors= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=5a311e5ce4be3cf4badaaf355b0286371e0fe3d30d8a8e96640098d71c5c6d77 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134025Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:25.165+0200 | |
2021-06-04T15:40:25.768+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] DEBUG: Response iam/ListRolePolicies Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 323 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:40:25 GMT | |
X-Amzn-Requestid: 6fc7bb9d-0dbe-423f-9938-8a69217348f0 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:25.767+0200 | |
2021-06-04T15:40:25.769+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] <ListRolePoliciesResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/"> | |
<ListRolePoliciesResult> | |
<IsTruncated>false</IsTruncated> | |
<PolicyNames/> | |
</ListRolePoliciesResult> | |
<ResponseMetadata> | |
<RequestId>6fc7bb9d-0dbe-423f-9938-8a69217348f0</RequestId> | |
</ResponseMetadata> | |
</ListRolePoliciesResponse>: timestamp=2021-06-04T15:40:25.767+0200 | |
2021-06-04T15:40:25.770+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:25 [DEBUG] [aws-sdk-go] DEBUG: Request iam/ListAttachedRolePolicies Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: iam.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 96 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=64dff8632aed11a0d27a25d1ef0cccd0bbdd7f1bf0a6a371d38bd4aeb023743b | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
X-Amz-Date: 20210604T134025Z | |
Accept-Encoding: gzip | |
Action=ListAttachedRolePolicies&RoleName=terraform-20210604133920257700000001&Version=2010-05-08 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:25.769+0200 | |
2021-06-04T15:40:27.506+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:27.506+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "aws_iam_role.dms_s3_writer (expand)" | |
2021-06-04T15:40:27.508+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:27.508+0200 [TRACE] dag/walk: vertex "root" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" | |
2021-06-04T15:40:28.228+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketCors Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:28 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: PyhIF2Nyk2YQ6azDDMdgFgecsq5mwzprw6s0bH6i1WVQLxnhkxxqPPxFEZd8xBRb1cpgt192Vrg= | |
X-Amz-Request-Id: XNMRKKFDTX8ZZHHQ | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:28.227+0200 | |
2021-06-04T15:40:28.228+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>NoSuchCORSConfiguration</Code><Message>The CORS configuration does not exist</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>XNMRKKFDTX8ZZHHQ</RequestId><HostId>PyhIF2Nyk2YQ6azDDMdgFgecsq5mwzprw6s0bH6i1WVQLxnhkxxqPPxFEZd8xBRb1cpgt192Vrg=</HostId></Error>: timestamp=2021-06-04T15:40:28.228+0200 | |
2021-06-04T15:40:28.228+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketCors failed, attempt 0/25, error NoSuchCORSConfiguration: The CORS configuration does not exist | |
status code: 404, request id: XNMRKKFDTX8ZZHHQ, host id: PyhIF2Nyk2YQ6azDDMdgFgecsq5mwzprw6s0bH6i1WVQLxnhkxxqPPxFEZd8xBRb1cpgt192Vrg=: timestamp=2021-06-04T15:40:28.228+0200 | |
2021-06-04T15:40:28.228+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:28.228+0200 | |
2021-06-04T15:40:28.229+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketWebsite Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?website= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=f5b9efe24e9eaa06236baa210a8b65011dd97f2597367f88be83e242aef57de1 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134028Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:28.229+0200 | |
2021-06-04T15:40:28.347+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketWebsite Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:28 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: KLm3/ueMCdzqGaGAoXfJZZCTcNrZ608wNwcra0JAc4nCxadmOMpSH2Lcfr7ouC1ju0kAzfiA93Y= | |
X-Amz-Request-Id: XNMTC3E1W2PS96B9 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:28.346+0200 | |
2021-06-04T15:40:28.347+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>NoSuchWebsiteConfiguration</Code><Message>The specified bucket does not have a website configuration</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>XNMTC3E1W2PS96B9</RequestId><HostId>KLm3/ueMCdzqGaGAoXfJZZCTcNrZ608wNwcra0JAc4nCxadmOMpSH2Lcfr7ouC1ju0kAzfiA93Y=</HostId></Error>: timestamp=2021-06-04T15:40:28.346+0200 | |
2021-06-04T15:40:28.347+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketWebsite failed, attempt 0/25, error NoSuchWebsiteConfiguration: The specified bucket does not have a website configuration | |
status code: 404, request id: XNMTC3E1W2PS96B9, host id: KLm3/ueMCdzqGaGAoXfJZZCTcNrZ608wNwcra0JAc4nCxadmOMpSH2Lcfr7ouC1ju0kAzfiA93Y=: timestamp=2021-06-04T15:40:28.346+0200 | |
2021-06-04T15:40:28.347+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:28.346+0200 | |
2021-06-04T15:40:28.349+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:28 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketVersioning Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?versioning= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=ae6d24a9fe9ee234aba689aca01ae77b046c8cc116cef5fb95a108e08a3dc117 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134028Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:28.348+0200 | |
2021-06-04T15:40:29.016+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:29 [DEBUG] [aws-sdk-go] DEBUG: Response iam/ListAttachedRolePolicies Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 360 | |
Content-Type: text/xml | |
Date: Fri, 04 Jun 2021 13:40:28 GMT | |
X-Amzn-Requestid: 5661410c-207e-44b7-a3b7-7a53b6e72f59 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:29.016+0200 | |
2021-06-04T15:40:29.016+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:29 [DEBUG] [aws-sdk-go] <ListAttachedRolePoliciesResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/"> | |
<ListAttachedRolePoliciesResult> | |
<IsTruncated>false</IsTruncated> | |
<AttachedPolicies/> | |
</ListAttachedRolePoliciesResult> | |
<ResponseMetadata> | |
<RequestId>5661410c-207e-44b7-a3b7-7a53b6e72f59</RequestId> | |
</ResponseMetadata> | |
</ListAttachedRolePoliciesResponse>: timestamp=2021-06-04T15:40:29.016+0200 | |
2021-06-04T15:40:29.017+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an unexpected new value for aws_iam_role.dms_s3_writer during refresh. | |
- .tags: was null, but now cty.MapValEmpty(cty.String) | |
2021-06-04T15:40:29.017+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:29.017+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:29.017+0200 [TRACE] Re-validating config for "aws_iam_role.dms_s3_writer" | |
2021-06-04T15:40:29.017+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:40:29.018+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:40:29.027+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_iam_role.dms_s3_writer, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .path: planned value cty.StringVal("/") for a non-computed attribute | |
- .description: planned value cty.StringVal("") for a non-computed attribute | |
- .max_session_duration: planned value cty.NumberIntVal(3600) for a non-computed attribute | |
- .force_detach_policies: planned value cty.False for a non-computed attribute | |
- .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute | |
2021-06-04T15:40:29.027+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:29.027+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:29.027+0200 [TRACE] writeChange: recorded NoOp change for aws_iam_role.dms_s3_writer | |
2021-06-04T15:40:29.027+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:40:29.027+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": dynamic subgraph completed successfully | |
2021-06-04T15:40:29.027+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer": visit complete | |
2021-06-04T15:40:29.027+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:40:29.027+0200 [TRACE] vertex "aws_iam_role.dms_s3_writer (expand)": visit complete | |
2021-06-04T15:40:31.423+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:31 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketVersioning Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Date: Fri, 04 Jun 2021 13:40:32 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: hbllvoVFWWqmQ/lhVD3yRENUhPLIUPmKeIKOVC2q/hYY/RtJmJGAMRy+JDlbsfUHx5kTEVPHiTY= | |
X-Amz-Request-Id: KK15JHKYBN2HVJ01 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:31.423+0200 | |
2021-06-04T15:40:31.423+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:31 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<VersioningConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"/>: timestamp=2021-06-04T15:40:31.423+0200 | |
2021-06-04T15:40:31.423+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:31 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:31.423+0200 | |
2021-06-04T15:40:31.423+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:31 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketAccelerateConfiguration Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?accelerate= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=515ccc05707c98d36c40cc569caff82a1b85c1e39e55b5e1c0bbfbb792bd5683 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134031Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:31.423+0200 | |
2021-06-04T15:40:32.507+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:32.509+0200 [TRACE] dag/walk: vertex "root" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" | |
2021-06-04T15:40:32.509+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:33.024+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketAccelerateConfiguration Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Date: Fri, 04 Jun 2021 13:40:34 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: cOG02ltaBIck9zJzCkKeA21mssbLjFcedBCi3DA9M6aVhODSPugLy2CfI5/sCobbdikcTQCVOck= | |
X-Amz-Request-Id: HYHE3TDQ2CXS5FJ2 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:33.024+0200 | |
2021-06-04T15:40:33.024+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<AccelerateConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"/>: timestamp=2021-06-04T15:40:33.024+0200 | |
2021-06-04T15:40:33.024+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:33.024+0200 | |
2021-06-04T15:40:33.024+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketRequestPayment Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?requestPayment= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=f722042b662ae4eb4c83bea3d316b9e76bbb005db2f2e9da1d6a58ed6a751cf5 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134033Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:33.024+0200 | |
2021-06-04T15:40:33.121+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketRequestPayment Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Transfer-Encoding: chunked | |
Date: Fri, 04 Jun 2021 13:40:34 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: HqSTQED+378O+aHRYWwjKVJI1RFe1h4IRsKX5/U3nhVqSwSa8Qudvt+GezXCz28e1h09+P3lkIU= | |
X-Amz-Request-Id: HYH42G2FVXE6G1FA | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:33.121+0200 | |
2021-06-04T15:40:33.121+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<RequestPaymentConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Payer>BucketOwner</Payer></RequestPaymentConfiguration>: timestamp=2021-06-04T15:40:33.121+0200 | |
2021-06-04T15:40:33.121+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:33.121+0200 | |
2021-06-04T15:40:33.122+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:33 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketLogging Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?logging= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=8a87dabb99c42a72cfe07b4429dc6d9abe7bf67f8c650846fd21fcb536039ca0 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134033Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:33.121+0200 | |
2021-06-04T15:40:34.030+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "aws_s3_bucket.target_bucket (expand)" | |
2021-06-04T15:40:37.511+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:37.512+0200 [TRACE] dag/walk: vertex "root" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" | |
2021-06-04T15:40:37.512+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:38.905+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:38 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketLogging Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 289 | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:40 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: +LsWx3uvUNfSvyCLDLTB937AkIiRLqXeTZ2BTRLxC13YETuPFc6Q2IEy1H2WWntahwOJp85S9N4= | |
X-Amz-Request-Id: NZ3CJB202S4EYRGH | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:38.904+0200 | |
2021-06-04T15:40:38.905+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:38 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<BucketLoggingStatus xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> | |
<!--<LoggingEnabled><TargetBucket>myLogsBucket</TargetBucket><TargetPrefix>add/this/prefix/to/my/log/files/access_log-</TargetPrefix></LoggingEnabled>--> | |
</BucketLoggingStatus>: timestamp=2021-06-04T15:40:38.904+0200 | |
2021-06-04T15:40:38.905+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:38 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:38.905+0200 | |
2021-06-04T15:40:38.906+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:38 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketLifecycleConfiguration Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?lifecycle= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=70d0bfd8825ab0225174ee4d6a63cda66412c1b392cb6bbca627c092a156acd6 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134038Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:38.905+0200 | |
2021-06-04T15:40:39.031+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "aws_s3_bucket.target_bucket (expand)" | |
2021-06-04T15:40:41.676+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketLifecycleConfiguration Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Content-Length: 319 | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:42 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: NYVylZP05t20B/YeCe8nxCyNfImZFrp3RDwI4hHxhTRvHJN95yGPhR/aAqMZjZXsHU/1evudIXU= | |
X-Amz-Id-2: NYVylZP05t20B/YeCe8nxCyNfImZFrp3RDwI4hHxhTRvHJN95yGPhR/aAqMZjZXsHU/1evudIXU= | |
X-Amz-Request-Id: VCAA35A3PD1A9S2C | |
X-Amz-Request-Id: VCAA35A3PD1A9S2C | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.676+0200 | |
2021-06-04T15:40:41.676+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] <Error><Code>NoSuchLifecycleConfiguration</Code><Message>The lifecycle configuration does not exist</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>VCAA35A3PD1A9S2C</RequestId><HostId>NYVylZP05t20B/YeCe8nxCyNfImZFrp3RDwI4hHxhTRvHJN95yGPhR/aAqMZjZXsHU/1evudIXU=</HostId></Error>: timestamp=2021-06-04T15:40:41.676+0200 | |
2021-06-04T15:40:41.677+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketLifecycleConfiguration failed, attempt 0/25, error NoSuchLifecycleConfiguration: The lifecycle configuration does not exist | |
status code: 404, request id: VCAA35A3PD1A9S2C, host id: NYVylZP05t20B/YeCe8nxCyNfImZFrp3RDwI4hHxhTRvHJN95yGPhR/aAqMZjZXsHU/1evudIXU=: timestamp=2021-06-04T15:40:41.677+0200 | |
2021-06-04T15:40:41.677+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:41.677+0200 | |
2021-06-04T15:40:41.677+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketReplication Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?replication= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=027684a183e79b49eb372ffdd5f2f029bb76f8e9cc813727eec3415f1f51f173 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134041Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.677+0200 | |
2021-06-04T15:40:41.770+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketReplication Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:41 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: DRYqJ368hDNubbRGZn4XCPz6OUruhtQBnjxkf6p/sKYG8uJ+2B/UcmYfiMuYtD5K57ggcN7jiUk= | |
X-Amz-Request-Id: VCAET5SB433E5TKT | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.770+0200 | |
2021-06-04T15:40:41.771+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>ReplicationConfigurationNotFoundError</Code><Message>The replication configuration was not found</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>VCAET5SB433E5TKT</RequestId><HostId>DRYqJ368hDNubbRGZn4XCPz6OUruhtQBnjxkf6p/sKYG8uJ+2B/UcmYfiMuYtD5K57ggcN7jiUk=</HostId></Error>: timestamp=2021-06-04T15:40:41.770+0200 | |
2021-06-04T15:40:41.771+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketReplication failed, attempt 0/25, error ReplicationConfigurationNotFoundError: The replication configuration was not found | |
status code: 404, request id: VCAET5SB433E5TKT, host id: DRYqJ368hDNubbRGZn4XCPz6OUruhtQBnjxkf6p/sKYG8uJ+2B/UcmYfiMuYtD5K57ggcN7jiUk=: timestamp=2021-06-04T15:40:41.770+0200 | |
2021-06-04T15:40:41.771+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:41.770+0200 | |
2021-06-04T15:40:41.771+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketEncryption Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?encryption= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3013c10399b62c41ca6934d93d8b8a8c80d37a7b78b2846264e4388717e33563 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134041Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.771+0200 | |
2021-06-04T15:40:41.877+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketEncryption Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:41 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: kSmNFj9NCtzWPySe9B5uzDA2hW+gut2l0QFi9UHzPNIS1Rm3N48xdfbgix+3YnffgvhcNFGiifQ= | |
X-Amz-Request-Id: FAX08WKAAHRXYHVV | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.877+0200 | |
2021-06-04T15:40:41.877+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>ServerSideEncryptionConfigurationNotFoundError</Code><Message>The server side encryption configuration was not found</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>FAX08WKAAHRXYHVV</RequestId><HostId>kSmNFj9NCtzWPySe9B5uzDA2hW+gut2l0QFi9UHzPNIS1Rm3N48xdfbgix+3YnffgvhcNFGiifQ=</HostId></Error>: timestamp=2021-06-04T15:40:41.877+0200 | |
2021-06-04T15:40:41.877+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketEncryption failed, attempt 0/25, error ServerSideEncryptionConfigurationNotFoundError: The server side encryption configuration was not found | |
status code: 404, request id: FAX08WKAAHRXYHVV, host id: kSmNFj9NCtzWPySe9B5uzDA2hW+gut2l0QFi9UHzPNIS1Rm3N48xdfbgix+3YnffgvhcNFGiifQ=: timestamp=2021-06-04T15:40:41.877+0200 | |
2021-06-04T15:40:41.877+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:41.877+0200 | |
2021-06-04T15:40:41.879+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObjectLockConfiguration Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?object-lock= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=8b349ff57f7c235eac096c5aa47658cb1c37ac2c1fd68c17791b4068bd0ed069 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134041Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.879+0200 | |
2021-06-04T15:40:41.988+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObjectLockConfiguration Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:41 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: vwqtwYjZcpsaDrbYhHb4UeM/1jsVrYTOPqQu3TWF0SnpTmFS0RiYkq7ms8wcFxZq5Pcl2+Um9sc= | |
X-Amz-Request-Id: FAXCSVFMBH6PBFBK | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.988+0200 | |
2021-06-04T15:40:41.988+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>ObjectLockConfigurationNotFoundError</Code><Message>Object Lock configuration does not exist for this bucket</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>FAXCSVFMBH6PBFBK</RequestId><HostId>vwqtwYjZcpsaDrbYhHb4UeM/1jsVrYTOPqQu3TWF0SnpTmFS0RiYkq7ms8wcFxZq5Pcl2+Um9sc=</HostId></Error>: timestamp=2021-06-04T15:40:41.988+0200 | |
2021-06-04T15:40:41.988+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetObjectLockConfiguration failed, attempt 0/25, error ObjectLockConfigurationNotFoundError: Object Lock configuration does not exist for this bucket | |
status code: 404, request id: FAXCSVFMBH6PBFBK, host id: vwqtwYjZcpsaDrbYhHb4UeM/1jsVrYTOPqQu3TWF0SnpTmFS0RiYkq7ms8wcFxZq5Pcl2+Um9sc=: timestamp=2021-06-04T15:40:41.988+0200 | |
2021-06-04T15:40:41.988+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:41.988+0200 | |
2021-06-04T15:40:41.989+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:41 [DEBUG] [aws-sdk-go] DEBUG: Request s3/HeadBucket Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
HEAD / HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=85b0b5454597e4f828069f9bde92e3665ce7ea13d7ad03c34b549a61bb7732d3 | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134041Z | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:41.989+0200 | |
2021-06-04T15:40:42.101+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:42 [DEBUG] [aws-sdk-go] DEBUG: Response s3/HeadBucket Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:43 GMT | |
Server: AmazonS3 | |
X-Amz-Bucket-Region: eu-central-1 | |
X-Amz-Id-2: 1n4q6n45UTNNg8cjB48yo/SH37dR1inqnmerQyn46nCpMtnpVtxhQxPjeYc5bjPtF/8uk1G6u6A= | |
X-Amz-Request-Id: FAX671S72VMGMNK5 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:42.101+0200 | |
2021-06-04T15:40:42.101+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:42 [DEBUG] [aws-sdk-go]: timestamp=2021-06-04T15:40:42.101+0200 | |
2021-06-04T15:40:42.101+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:42 [DEBUG] Waiting for state to become: [success]: timestamp=2021-06-04T15:40:42.101+0200 | |
2021-06-04T15:40:42.101+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:42 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetBucketTagging Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
GET /?tagging= HTTP/1.1 | |
Host: reproducible-bucket20210604133920264300000002.s3.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=72dd5fa9022b563dd5a5422f2ac613937f64ebbc58d7a57bfe7ea67e8feaecad | |
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | |
X-Amz-Date: 20210604T134042Z | |
Accept-Encoding: gzip | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:42.101+0200 | |
2021-06-04T15:40:42.511+0200 [TRACE] dag/walk: vertex "meta.count-boundary (EachMode fixup)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:42.513+0200 [TRACE] dag/walk: vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" is waiting for "aws_dms_endpoint.endpoint (expand)" | |
2021-06-04T15:40:42.513+0200 [TRACE] dag/walk: vertex "root" is waiting for "provider[\"registry.terraform.io/hashicorp/aws\"] (close)" | |
2021-06-04T15:40:44.031+0200 [TRACE] dag/walk: vertex "aws_dms_endpoint.endpoint (expand)" is waiting for "aws_s3_bucket.target_bucket (expand)" | |
2021-06-04T15:40:45.200+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetBucketTagging Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 404 Not Found | |
Connection: close | |
Transfer-Encoding: chunked | |
Content-Type: application/xml | |
Date: Fri, 04 Jun 2021 13:40:44 GMT | |
Server: AmazonS3 | |
X-Amz-Id-2: bIZHj5JfpfGvgDKgTb/Ee5VnRX8QQxQ1Uprbs2C350CJrZ9xZjNJtqRLWkclnGP9aNiPp1zsXvk= | |
X-Amz-Request-Id: AV60TEFENA0GJ6VJ | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:45.200+0200 | |
2021-06-04T15:40:45.201+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?> | |
<Error><Code>NoSuchTagSet</Code><Message>The TagSet does not exist</Message><BucketName>reproducible-bucket20210604133920264300000002</BucketName><RequestId>AV60TEFENA0GJ6VJ</RequestId><HostId>bIZHj5JfpfGvgDKgTb/Ee5VnRX8QQxQ1Uprbs2C350CJrZ9xZjNJtqRLWkclnGP9aNiPp1zsXvk=</HostId></Error>: timestamp=2021-06-04T15:40:45.200+0200 | |
2021-06-04T15:40:45.201+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] DEBUG: Validate Response s3/GetBucketTagging failed, attempt 0/25, error NoSuchTagSet: The TagSet does not exist | |
status code: 404, request id: AV60TEFENA0GJ6VJ, host id: bIZHj5JfpfGvgDKgTb/Ee5VnRX8QQxQ1Uprbs2C350CJrZ9xZjNJtqRLWkclnGP9aNiPp1zsXvk=: timestamp=2021-06-04T15:40:45.200+0200 | |
2021-06-04T15:40:45.204+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an unexpected new value for aws_s3_bucket.target_bucket during refresh. | |
- .tags: was null, but now cty.MapValEmpty(cty.String) | |
2021-06-04T15:40:45.205+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:45.205+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:45.206+0200 [TRACE] Re-validating config for "aws_s3_bucket.target_bucket" | |
2021-06-04T15:40:45.206+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:40:45.208+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:40:45.224+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_s3_bucket.target_bucket, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute | |
- .acl: planned value cty.StringVal("private") for a non-computed attribute | |
- .versioning: block count in plan (1) disagrees with count in config (0) | |
2021-06-04T15:40:45.225+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:45.225+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:45.225+0200 [TRACE] writeChange: recorded NoOp change for aws_s3_bucket.target_bucket | |
2021-06-04T15:40:45.225+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:40:45.225+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": dynamic subgraph completed successfully | |
2021-06-04T15:40:45.225+0200 [TRACE] vertex "aws_s3_bucket.target_bucket": visit complete | |
2021-06-04T15:40:45.225+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:40:45.225+0200 [TRACE] vertex "aws_s3_bucket.target_bucket (expand)": visit complete | |
2021-06-04T15:40:45.226+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021-06-04T15:40:45.226+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": expanding dynamic subgraph | |
2021-06-04T15:40:45.226+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": entering dynamic subgraph | |
2021-06-04T15:40:45.226+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodePlannableResource) | |
2021-06-04T15:40:45.226+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": expanding dynamic subgraph | |
2021-06-04T15:40:45.226+0200 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021-06-04T15:40:45.226+0200 [TRACE] ResourceCountTransformer: adding aws_dms_endpoint.endpoint as *terraform.NodePlannableResourceInstance | |
2021-06-04T15:40:45.226+0200 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
aws_dms_endpoint.endpoint - *terraform.NodePlannableResourceInstance | |
------ | |
2021-06-04T15:40:45.226+0200 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021-06-04T15:40:45.226+0200 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021-06-04T15:40:45.226+0200 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021-06-04T15:40:45.226+0200 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021-06-04T15:40:45.226+0200 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021-06-04T15:40:45.226+0200 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021-06-04T15:40:45.226+0200 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021-06-04T15:40:45.226+0200 [DEBUG] ReferenceTransformer: "aws_dms_endpoint.endpoint" references: [] | |
2021-06-04T15:40:45.226+0200 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021-06-04T15:40:45.226+0200 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021-06-04T15:40:45.226+0200 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021-06-04T15:40:45.226+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": entering dynamic subgraph | |
2021-06-04T15:40:45.226+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": starting visit (*terraform.NodePlannableResourceInstance) | |
2021-06-04T15:40:45.226+0200 [TRACE] readResourceInstanceState: reading state for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.226+0200 [TRACE] upgradeResourceState: schema version of aws_dms_endpoint.endpoint is still 0; calling provider "aws" for any other minor fixups | |
2021-06-04T15:40:45.226+0200 [TRACE] GRPCProvider: UpgradeResourceState | |
2021-06-04T15:40:45.229+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to prevRunState for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.229+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.229+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.229+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.230+0200 [TRACE] NodeAbstractResourceInstance.refresh for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.230+0200 [TRACE] GRPCProvider: ReadResource | |
2021-06-04T15:40:45.232+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] DEBUG: Request dms/DescribeEndpoints Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: dms.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 64 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/dms/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=8891ca357b468d1caa4d60383bd48ac986e54d0163d3ff069f792ae87d720f66 | |
Content-Type: application/x-amz-json-1.1 | |
X-Amz-Date: 20210604T134045Z | |
X-Amz-Target: AmazonDMSv20160101.DescribeEndpoints | |
Accept-Encoding: gzip | |
{"Filters":[{"Name":"endpoint-id","Values":["dummy-endpoint"]}]} | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:45.232+0200 | |
2021-06-04T15:40:45.345+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] DEBUG: Response dms/DescribeEndpoints Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 1193 | |
Content-Type: application/x-amz-json-1.1 | |
Date: Fri, 04 Jun 2021 13:40:45 GMT | |
X-Amzn-Requestid: d05b7f17-5203-4c66-9259-29619315a865 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:45.345+0200 | |
2021-06-04T15:40:45.345+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] {"Endpoints":[{"EndpointArn":"arn:aws:dms:eu-central-1:123123123123:endpoint:TLO6AYVP65TGYASSL23HVAJDW5QDVCVJH54YULQ","EndpointIdentifier":"dummy-endpoint","EndpointType":"TARGET","EngineDisplayName":"Amazon S3","EngineName":"s3","ExternalTableDefinition":"","ExtraConnectionAttributes":"bucketName=reproducible-bucket20210604133920264300000002;bucketPrefix=some/prefix;CdcPath=cdc;compressionType=NONE;csvDelimiter=,;csvRowDelimiter=\\n;dataFormat=parquet;datePartitionEnabled=true;includeOpForFullLoad=true;parquetTimestampInMillisecond=true;parquetVersion=PARQUET_2_0;PreserveTransactions=true;timestampColumnName=timestamp;","ReceiveTransferredFiles":false,"S3Settings":{"BucketFolder":"","BucketName":"reproducible-bucket20210604133920264300000002","CdcPath":"cdc","CompressionType":"NONE","CsvDelimiter":",","CsvRowDelimiter":"\\n","DatePartitionEnabled":true,"EnableStatistics":true,"ExternalTableDefinition":"","PreserveTransactions":true,"ServiceAccessRoleArn":"arn:aws:iam::123123123123:role/terraform-20210604133920257700000001"},"ServiceAccessRoleArn":"arn:aws:iam::123123123123:role/terraform-20210604133920257700000001","SslMode":"none","Status":"active","TransferFiles":false}]}: timestamp=2021-06-04T15:40:45.345+0200 | |
2021-06-04T15:40:45.345+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] DEBUG: Request dms/ListTagsForResource Details: | |
---[ REQUEST POST-SIGN ]----------------------------- | |
POST / HTTP/1.1 | |
Host: dms.eu-central-1.amazonaws.com | |
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.15.5 (+https://www.terraform.io) terraform-provider-aws/3.44.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.38.53 (go1.16; linux; amd64) | |
Content-Length: 104 | |
Authorization: AWS4-HMAC-SHA256 Credential=AKIA2BFBC5RBWESRYHW4/20210604/eu-central-1/dms/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=2ae8848886fd7e6df383036c41f7303902cbeab15a6892537d6452269c6240a6 | |
Content-Type: application/x-amz-json-1.1 | |
X-Amz-Date: 20210604T134045Z | |
X-Amz-Target: AmazonDMSv20160101.ListTagsForResource | |
Accept-Encoding: gzip | |
{"ResourceArn":"arn:aws:dms:eu-central-1:123123123123:endpoint:TLO6AYVP65TGYASSL23HVAJDW5QDVCVJH54YULQ"} | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:45.345+0200 | |
2021-06-04T15:40:45.448+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] DEBUG: Response dms/ListTagsForResource Details: | |
---[ RESPONSE ]-------------------------------------- | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 14 | |
Content-Type: application/x-amz-json-1.1 | |
Date: Fri, 04 Jun 2021 13:40:45 GMT | |
X-Amzn-Requestid: b8972b75-80f5-4fee-b2d1-11ff5817f0d3 | |
-----------------------------------------------------: timestamp=2021-06-04T15:40:45.448+0200 | |
2021-06-04T15:40:45.448+0200 [INFO] provider.terraform-provider-aws_v3.44.0_x5: 2021/06/04 15:40:45 [DEBUG] [aws-sdk-go] {"TagList":[]}: timestamp=2021-06-04T15:40:45.448+0200 | |
2021-06-04T15:40:45.449+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an unexpected new value for aws_dms_endpoint.endpoint during refresh. | |
- .tags: was null, but now cty.MapValEmpty(cty.String) | |
2021-06-04T15:40:45.449+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.449+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.449+0200 [TRACE] Re-validating config for "aws_dms_endpoint.endpoint" | |
2021-06-04T15:40:45.449+0200 [TRACE] GRPCProvider: ValidateResourceConfig | |
2021-06-04T15:40:45.450+0200 [TRACE] GRPCProvider: PlanResourceChange | |
2021-06-04T15:40:45.468+0200 [WARN] Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_dms_endpoint.endpoint, but we are tolerating it because it is using the legacy plugin SDK. | |
The following problems may be the cause of any confusing errors from downstream operations: | |
- .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute | |
- .s3_settings[0].csv_delimiter: planned value cty.StringVal(",") for a non-computed attribute | |
- .s3_settings[0].csv_row_delimiter: planned value cty.StringVal("\\n") for a non-computed attribute | |
- .s3_settings[0].date_partition_enabled: planned value cty.False for a non-computed attribute | |
- .s3_settings[0].external_table_definition: planned value cty.StringVal("") for a non-computed attribute | |
- .s3_settings[0].bucket_folder: planned value cty.StringVal("") for a non-computed attribute | |
- .s3_settings[0].bucket_name: planned value cty.StringVal("") for a non-computed attribute | |
- .s3_settings[0].compression_type: planned value cty.StringVal("NONE") for a non-computed attribute | |
2021-06-04T15:40:45.468+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState to workingState for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.468+0200 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.468+0200 [TRACE] writeChange: recorded Update change for aws_dms_endpoint.endpoint | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": dynamic subgraph completed successfully | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "aws_dms_endpoint.endpoint": visit complete | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": dynamic subgraph completed successfully | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "aws_dms_endpoint.endpoint (expand)": visit complete | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021-06-04T15:40:45.468+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021-06-04T15:40:45.468+0200 [TRACE] GRPCProvider: Close | |
2021-06-04T15:40:45.470+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing" | |
2021-06-04T15:40:45.475+0200 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.44.0/linux_amd64/terraform-provider-aws_v3.44.0_x5 pid=479236 | |
2021-06-04T15:40:45.475+0200 [DEBUG] provider: plugin exited | |
2021-06-04T15:40:45.475+0200 [TRACE] vertex "provider[\"registry.terraform.io/hashicorp/aws\"] (close)": visit complete | |
2021-06-04T15:40:45.475+0200 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021-06-04T15:40:45.475+0200 [TRACE] vertex "root": visit complete | |
2021-06-04T15:40:45.475+0200 [INFO] backend/local: plan operation completed | |
2021-06-04T15:40:45.482+0200 [TRACE] statemgr.Filesystem: removing lock metadata file .terraform.tfstate.lock.info | |
2021-06-04T15:40:45.482+0200 [TRACE] statemgr.Filesystem: unlocking terraform.tfstate using fcntl flock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment