hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.76k stars 9.11k forks source link

[Bug]: aws_vpc_endpoint_connection_accepter - to be accepted: couldn't find resource #27761

Open stravze opened 1 year ago

stravze commented 1 year ago

Terraform Core Version

1.0.11

AWS Provider Version

4.38.0

Affected Resource(s)

aws_vpc_endpoint_connection_accepter

The above service is used to connect aws_vpc_endpoint to aws_vpc_endpoint_service

Expected Behavior

Expected Behaviour the endpoint should connect to the endpoint service

I have tested with set to both True and False = same error, every time aws_vpc_endpoint_service acceptance_required = false

aws_vpc_endpoint auto_accept set to both True and False = same error, every time

Actual Behavior

Error: error waiting for VPC Endpoint Connection (vpce-svc-03xxxxxxxx_vpce-00e3xxxxxxxx) to be accepted: couldn't find resource (21 retries)

Both Resources do exist

Relevant Error/Panic Output Snippet

No response

Terraform Configuration Files

resource "aws_vpc_endpoint_service" "vpce_service" {
  acceptance_required        = false
  network_load_balancer_arns = [module.nlb.lb_arn]

  allowed_principals = [for principals in var.accounts : "arn:aws:iam::${principals}:root"]

  tags = merge(
    local.env_tags,
    {
      Name = local.env_service_name
    }
  )
}

resource "aws_vpc_endpoint" "endpoint" {
  for_each = var.endpoint_service_names

  service_name      = each.value
  subnet_ids        = module.vpc.private_subnets
  vpc_endpoint_type = "Interface"
  vpc_id            = module.vpc.vpc_id
  security_group_ids = [
    module.ingress_sg.security_group_id,
    module.egress_sg.security_group_id
  ]

  tags = merge(
    local.env_tags,
    {
      Name = local.env_service_name
    }
  )
}

# Bug - error - to be accepted: couldn't find resource (21 retries)
resource "aws_vpc_endpoint_connection_accepter" "endpoint_connector" {
  for_each = var.endpoint_service_names
  vpc_endpoint_service_id = aws_vpc_endpoint_service.vpce_service.id
  vpc_endpoint_id         = aws_vpc_endpoint.endpoint[each.key].id

  depends_on = [
    aws_vpc_endpoint.endpoint,
    aws_vpc_endpoint_service.vpce_service
  ]  
}

Steps to Reproduce

Rerun Terraform code

Debug Output

2022-11-11T11:11:28.618Z [DEBUG] Starting graph walk: walkApply
2022-11-11T11:11:28.619Z [DEBUG] created provider logger: level=debug
2022-11-11T11:11:28.619Z [INFO]  provider: configuring client automatic mTLS
2022-11-11T11:11:28.650Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/4.38.0/darwin_amd64/terraform-provider-aws_v4.38.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/4.38.0/darwin_amd64/terraform-provider-aws_v4.38.0_x5]
2022-11-11T11:11:28.677Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/4.38.0/darwin_amd64/terraform-provider-aws_v4.38.0_x5 pid=50907
2022-11-11T11:11:28.677Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/4.38.0/darwin_amd64/terraform-provider-aws_v4.38.0_x5
2022-11-11T11:11:28.863Z [INFO]  provider.terraform-provider-aws_v4.38.0_x5: configuring server automatic mTLS: timestamp=2022-11-11T11:11:28.863Z
2022-11-11T11:11:28.883Z [DEBUG] provider: using plugin: version=5
2022-11-11T11:11:28.883Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: plugin address: address=/var/folders/6g/p2_b9css5fz_jxnzvxq082h80000gn/T/plugin2255097896 network=unix timestamp=2022-11-11T11:11:28.883Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=s3_force_path_style tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_mux_provider=*proto5server.Server @module=sdk.framework tf_attribute_path=s3_force_path_style tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @module=sdk.framework tf_attribute_path=shared_credentials_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_attribute_path=shared_credentials_files tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=sts_region tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_attribute_path=sts_region tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=secret_key tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=secret_key timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_attribute_path=access_key tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=access_key tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_attribute_path=custom_ca_bundle tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @module=sdk.framework tf_attribute_path=custom_ca_bundle tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=profile tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=profile tf_mux_provider=*proto5server.Server timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.082Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_attribute_path=skip_metadata_api_check tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=skip_metadata_api_check @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=use_dualstack_endpoint tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=use_dualstack_endpoint tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @module=sdk.framework tf_attribute_path=skip_requesting_account_id tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=skip_requesting_account_id tf_rpc=PrepareProviderConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_attribute_path=allowed_account_ids tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_attribute_path=allowed_account_ids @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig tf_attribute_path=http_proxy timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_rpc=PrepareProviderConfig tf_attribute_path=http_proxy timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=insecure tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=ec2_metadata_service_endpoint_mode tf_mux_provider=*proto5server.Server @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_attribute_path=ec2_metadata_service_endpoint_mode tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=shared_credentials_file tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_attribute_path=shared_credentials_file tf_mux_provider=*proto5server.Server timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=use_fips_endpoint tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_attribute_path=use_fips_endpoint timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_attribute_path=token tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider=*proto5server.Server @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=forbidden_account_ids tf_mux_provider=*proto5server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_attribute_path=forbidden_account_ids tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=ec2_metadata_service_endpoint tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=ec2_metadata_service_endpoint tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_attribute_path=max_retries tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:11:29.082Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=max_retries tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.083Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=shared_config_files @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_attribute_path=shared_config_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_attribute_path=skip_get_ec2_platforms tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_rpc=PrepareProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_mux_provider=*proto5server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=skip_get_ec2_platforms timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_attribute_path=region tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_mux_provider=*proto5server.Server timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=region tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=skip_region_validation tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=skip_region_validation tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=skip_credentials_validation tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=skip_credentials_validation tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=s3_use_path_style timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=s3_use_path_style tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=s3_use_path_style tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=s3_use_path_style tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=s3_use_path_style tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=s3_use_path_style tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=s3_use_path_style timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=s3_use_path_style tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca @module=sdk.framework tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig tf_attribute_path=s3_use_path_style timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig @module=sdk.framework tf_attribute_path=s3_use_path_style @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=s3_use_path_style @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:78 tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
2022-11-11T11:11:29.084Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=s3_use_path_style tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwschemadata/data_value.go:80 tf_mux_provider=*proto5server.Server tf_req_id=6a0d9c00-69b9-ef62-bcbe-a2df855dd1ca tf_rpc=PrepareProviderConfig timestamp=2022-11-11T11:11:29.083Z
022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: -----------------------------------------------------
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     <requestId>0a36220f-7e4c-4477-825d-b355e0ff6fec</requestId>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     <accountAttributeSet>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:         <item>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:             <attributeName>supported-platforms</attributeName>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:             <attributeValueSet>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:                 <item>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:                     <attributeValue>VPC</attributeValue>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:                 </item>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:             </attributeValueSet>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:         </item>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     </accountAttributeSet>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: </DescribeAccountAttributesResponse>
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Calling provider defined Provider Configure: tf_rpc=ConfigureProvider tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework tf_req_id=7c6225d0-08a4-f12b-fdbb-a58fade16b02 timestamp=2022-11-11T11:11:29.864Z
2022-11-11T11:11:29.865Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=7c6225d0-08a4-f12b-fdbb-a58fade16b02 tf_rpc=ConfigureProvider tf_mux_provider=*proto5server.Server @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v0.14.0/internal/fwserver/server_configureprovider.go:20 timestamp=2022-11-11T11:11:29.864Z
2022-11-11T11:11:29.874Z [INFO]  Starting apply for aws_vpc_endpoint_connection_accepter.mq_endpoint_connector["XXXXXX"]
2022-11-11T11:11:29.874Z [DEBUG] aws_vpc_endpoint_connection_accepter.mq_endpoint_connector["XXXXXX"]: applying the planned Create change
2022-11-11T11:11:29.875Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: [DEBUG] Accepting VPC Endpoint Connection: {
2022-11-11T11:11:29.875Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:   ServiceId: "vpce-svc-035facXXXXXXXXXX",
2022-11-11T11:11:29.875Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:   VpcEndpointIds: ["vpce-00e3b4XXXXXXXXXX"]
2022-11-11T11:11:29.875Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: }
2022-11-11T11:11:29.876Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: [DEBUG] [aws-sdk-go] DEBUG: Request ec2/AcceptVpcEndpointConnections Details:
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: -----------------------------------------------------
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: <AcceptVpcEndpointConnectionsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     <requestId>5d2c4a0d-9309-4c44-a82b-8c1e492dee17</requestId>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     <unsuccessful>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:         <item>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:             <error>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:                 <code>InvalidVpcEndpoint.NotFound</code>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:                 <message>The Vpc Endpoint Id 'vpce-00e3b4a4XXXXXXX' does not exist</message>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:             </error>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:             <resourceId>vpce-00e3b4a413XXXXXXXX</resourceId>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:         </item>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     </unsuccessful>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: </AcceptVpcEndpointConnectionsResponse>
2022-11-11T11:11:29.969Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: [DEBUG] Waiting for state to become: [available]
2022-11-11T11:11:35.063Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: -----------------------------------------------------
2022-11-11T11:14:52.204Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2022-11-11T11:14:52.204Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: <DescribeVpcEndpointConnectionsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2022-11-11T11:14:52.204Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     <requestId>64a4b15d-018b-46f4-a38f-b4767683a4de</requestId>
2022-11-11T11:14:52.204Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5:     <vpcEndpointConnectionSet/>
2022-11-11T11:14:52.204Z [DEBUG] provider.terraform-provider-aws_v4.38.0_x5: </DescribeVpcEndpointConnectionsResponse>
2022-11-11T11:14:52.212Z [ERROR] provider.terraform-provider-aws_v4.38.0_x5: Response contains error diagnostic: tf_req_id=49687398-5edf-4bed-a304-fb6662eb0b7e tf_resource_type=aws_vpc_endpoint_connection_accepter @caller=github.com/hashicorp/terraform-plugin-go@v0.14.0/tfprotov5/internal/diag/diagnostics.go:55 diagnostic_severity=ERROR tf_proto_version=5.3 tf_rpc=ApplyResourceChange @module=sdk.proto diagnostic_detail= diagnostic_summary="error waiting for VPC Endpoint Connection (vpce-svc-035fac0b4XXXXX_vpce-00e3b4a4137XXXXX) to be accepted: couldn't find resource (21 retries)" tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2022-11-11T11:14:52.209Z
2022-11-11T11:14:52.386Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-11-11T11:14:52.398Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/4.38.0/darwin_amd64/terraform-provider-aws_v4.38.0_x5 pid=50907
2022-11-11T11:14:52.398Z [DEBUG] provider: plugin exited

Panic Output

No response

Important Factoids

none

References

No response

Would you like to implement a fix?

No

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue