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.74k stars 9.09k forks source link

[Bug]: When I import an Aurora cluster with enable_global_write_forwarding = false into Terraform, the Terraform plan shows a change to set enable_global_write_forwarding to false. #38578

Open yamazoon0207 opened 1 month ago

yamazoon0207 commented 1 month ago

Terraform Core Version

Terraform v1.7.4

AWS Provider Version

v5.40.0

Affected Resource(s)

Expected Behavior

I have an Aurora cluster with enable_global_write_forwarding = false. When I try to import it to terraform, "changes" do not appear in the terraform plan.

Actual Behavior

I have an Aurora cluster with enable_global_write_forwarding = false. When I try to import it to terraform, "changes" appears in the terraform plan. Change to enable_global_write_forwarding = false. When I run terraform apply, no changes are made, but change succeeds.

Relevant Error/Panic Output Snippet

No response

Terraform Configuration Files

resource "aws_rds_cluster" "test" {
  cluster_identifier              = "provisioning-rds-enable-test-01"
  db_subnet_group_name            = aws_db_subnet_group.test.name
  db_cluster_parameter_group_name = aws_rds_cluster_parameter_group.test.name
  engine_version                  = "15.3"
  engine                          = "aurora-postgresql"
  engine_mode                     = "provisioned"
  enable_http_endpoint            = true
  iam_roles                       = []
  master_username                 = "postgres"
  manage_master_user_password     = true
  #enable_global_write_forwarding  = false
  network_type = "IPV4"
  serverlessv2_scaling_configuration {
    max_capacity = 16
    min_capacity = 2
  }
  vpc_security_group_ids = ["sg-xxxxxxxx"]
  skip_final_snapshot = true
}
resource "aws_rds_cluster_instance" "test" {
  cluster_identifier      = aws_rds_cluster.test.cluster_identifier
  db_subnet_group_name    = aws_rds_cluster.test.db_subnet_group_name
  db_parameter_group_name = aws_db_parameter_group.test.name
  engine                  = aws_rds_cluster.test.engine
  engine_version          = aws_rds_cluster.test.engine_version
  identifier              = "rds-01"
  instance_class          = "db.serverless"
}
resource "aws_db_subnet_group" "test" {
  name       = "test_db_group-01"
  subnet_ids = ["subnet-xxxxxxxx","subnet-xxxxxxxx"]
}
resource "aws_rds_cluster_parameter_group" "test" {
  name        = "test-rds-cluster-parameter-group-01"
  family      = "aurora-postgresql15"
  description = "test"
}
resource "aws_db_parameter_group" "test" {
  name        = "test-rds-instance-parameter-group-01"
  family      = "aurora-postgresql15"
  description = "test"
}
resource "aws_ssm_parameter" "db_endpoint" {
  name = "jdbc_url-01"
  type = "String"
  value = aws_rds_cluster.test.endpoint
}
resource "aws_ssm_parameter" "reference_test" {
  name  = "reference-01"
  type  = "String"
  value = aws_ssm_parameter.db_endpoint.value
}
import {
  to = aws_rds_cluster.test
  id = "provisioning-rds"
}
import {
  to = aws_rds_cluster_instance.test
  id = "rds-1"
}

Steps to Reproduce

  1. Prepare an Aurora cluster with the same contents as rds.tf in advance
  2. Enter the cluster identifier and instance identifier prepared in step 1 in import.tf
  3. Import by running terraform apply

Debug Output

2024-07-31T20:49:54.938+0900 [INFO]  Terraform version: 1.9.3
2024-07-31T20:49:54.938+0900 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-07-31T20:49:54.938+0900 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-07-31T20:49:54.938+0900 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-07-31T20:49:54.938+0900 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-07-31T20:49:54.938+0900 [INFO]  Go runtime version: go1.22.5
2024-07-31T20:49:54.938+0900 [INFO]  CLI args: []string{"terraform", "apply"}
2024-07-31T20:49:54.938+0900 [DEBUG] Attempting to open CLI config file: /Users/star-yamamoto-373150/.terraformrc
2024-07-31T20:49:54.938+0900 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-07-31T20:49:54.939+0900 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-07-31T20:49:54.939+0900 [DEBUG] ignoring non-existing provider search directory /Users/star-yamamoto-373150/.terraform.d/plugins
2024-07-31T20:49:54.939+0900 [DEBUG] ignoring non-existing provider search directory /Users/star-yamamoto-373150/Library/Application Support/io.terraform/plugins
2024-07-31T20:49:54.939+0900 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-07-31T20:49:54.939+0900 [INFO]  CLI command args: []string{"apply"}
2024-07-31T20:49:55.309+0900 [DEBUG] checking for provisioner in "."
2024-07-31T20:49:55.311+0900 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
2024-07-31T20:49:55.311+0900 [INFO]  backend/local: starting Apply operation
2024-07-31T20:49:55.314+0900 [DEBUG] created provider logger: level=debug
2024-07-31T20:49:55.314+0900 [INFO]  provider: configuring client automatic mTLS
2024-07-31T20:49:55.320+0900 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5"]
2024-07-31T20:49:55.329+0900 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 pid=28764
2024-07-31T20:49:55.329+0900 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5
2024-07-31T20:49:55.787+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: configuring server automatic mTLS: timestamp="2024-07-31T20:49:55.786+0900"
2024-07-31T20:49:55.793+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: plugin address: address=/var/folders/p_/7pjj_f0n49s0k2w28xc5l0vw0000gn/T/plugin1503866959 network=unix timestamp="2024-07-31T20:49:55.793+0900"
2024-07-31T20:49:55.793+0900 [DEBUG] provider: using plugin: version=5
2024-07-31T20:49:56.258+0900 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-07-31T20:49:56.262+0900 [INFO]  provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 id=28764
2024-07-31T20:49:56.262+0900 [DEBUG] provider: plugin exited
2024-07-31T20:49:56.262+0900 [DEBUG] Building and walking validate graph
2024-07-31T20:49:56.262+0900 [DEBUG] ProviderTransformer: "aws_db_parameter_group.test16" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.262+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.db_endpoint" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.262+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.reference_test" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.262+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster.test" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.262+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_instance.test" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.262+0900 [DEBUG] ProviderTransformer: "aws_db_subnet_group.test" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.262+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_parameter_group.test16" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.reference_test" references: [aws_ssm_parameter.db_endpoint]
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster.test" references: [aws_db_subnet_group.test aws_rds_cluster_parameter_group.test16]
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_instance.test" references: [aws_rds_cluster.test aws_db_parameter_group.test16 aws_rds_cluster.test aws_rds_cluster.test aws_rds_cluster.test]
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "aws_db_subnet_group.test" references: []
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_parameter_group.test16" references: []
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "aws_db_parameter_group.test16" references: []
2024-07-31T20:49:56.262+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.db_endpoint" references: [aws_rds_cluster.test]
2024-07-31T20:49:56.263+0900 [DEBUG] Starting graph walk: walkValidate
2024-07-31T20:49:56.263+0900 [DEBUG] created provider logger: level=debug
2024-07-31T20:49:56.263+0900 [INFO]  provider: configuring client automatic mTLS
2024-07-31T20:49:56.265+0900 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5"]
2024-07-31T20:49:56.274+0900 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 pid=28765
2024-07-31T20:49:56.275+0900 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5
2024-07-31T20:49:56.652+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: configuring server automatic mTLS: timestamp="2024-07-31T20:49:56.652+0900"
2024-07-31T20:49:56.657+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: plugin address: address=/var/folders/p_/7pjj_f0n49s0k2w28xc5l0vw0000gn/T/plugin2566400090 network=unix timestamp="2024-07-31T20:49:56.657+0900"
2024-07-31T20:49:56.657+0900 [DEBUG] provider: using plugin: version=5
2024-07-31T20:49:56.726+0900 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-07-31T20:49:56.729+0900 [INFO]  provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 id=28765
2024-07-31T20:49:56.729+0900 [DEBUG] provider: plugin exited
2024-07-31T20:49:56.729+0900 [INFO]  backend/local: apply calling Plan
2024-07-31T20:49:56.729+0900 [DEBUG] Building and walking plan graph for NormalMode
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_parameter_group.test16 (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_parameter_group.test15 (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_db_parameter_group.test16 (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.reference_test (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_instance.test (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.db_endpoint (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster.test (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ProviderTransformer: "aws_db_subnet_group.test (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_db_parameter_group.test16 (expand)" references: []
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.reference_test (expand)" references: [aws_ssm_parameter.db_endpoint (expand)]
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_instance.test (expand)" references: [aws_rds_cluster.test (expand) aws_db_parameter_group.test16 (expand) aws_rds_cluster.test (expand) aws_rds_cluster.test (expand) aws_rds_cluster.test (expand)]
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_parameter_group.test16 (expand)" references: []
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_parameter_group.test15 (orphan)" references: []
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.db_endpoint (expand)" references: [aws_rds_cluster.test (expand)]
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster.test (expand)" references: [aws_rds_cluster_parameter_group.test16 (expand) aws_db_subnet_group.test (expand)]
2024-07-31T20:49:56.729+0900 [DEBUG] ReferenceTransformer: "aws_db_subnet_group.test (expand)" references: []
2024-07-31T20:49:56.730+0900 [DEBUG] Starting graph walk: walkPlan
2024-07-31T20:49:56.730+0900 [DEBUG] created provider logger: level=debug
2024-07-31T20:49:56.730+0900 [INFO]  provider: configuring client automatic mTLS
2024-07-31T20:49:56.732+0900 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5"]
2024-07-31T20:49:56.741+0900 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 pid=28766
2024-07-31T20:49:56.741+0900 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5
2024-07-31T20:49:57.126+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: configuring server automatic mTLS: timestamp="2024-07-31T20:49:57.126+0900"
2024-07-31T20:49:57.132+0900 [DEBUG] provider: using plugin: version=5
2024-07-31T20:49:57.132+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: plugin address: address=/var/folders/p_/7pjj_f0n49s0k2w28xc5l0vw0000gn/T/plugin4152935177 network=unix timestamp="2024-07-31T20:49:57.132+0900"
2024-07-31T20:49:57.195+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Configuring Terraform AWS Provider: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:147 @module=aws timestamp="2024-07-31T20:49:57.195+0900"
2024-07-31T20:49:57.195+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Resolving credentials provider: tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp="2024-07-31T20:49:57.195+0900"
2024-07-31T20:49:57.196+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Loading configuration: tf_mux_provider="*schema.GRPCProviderServer" tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 timestamp="2024-07-31T20:49:57.196+0900"
2024-07-31T20:49:57.198+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Retrieving credentials: @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 tf_rpc=ConfigureProvider timestamp="2024-07-31T20:49:57.198+0900"
2024-07-31T20:49:57.198+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: Retrieved credentials: @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:39 tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 tf_rpc=ConfigureProvider @module=aws.aws-base tf_aws.credentials_source="SharedConfigCredentials: /Users/star-yamamoto-373150/.aws/credentials" tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp="2024-07-31T20:49:57.198+0900"
2024-07-31T20:49:57.198+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Loading configuration: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 @module=aws.aws-base tf_mux_provider="*schema.GRPCProviderServer" timestamp="2024-07-31T20:49:57.198+0900"
2024-07-31T20:49:57.198+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Creating AWS SDK v1 session: @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:171 @module=aws tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 timestamp="2024-07-31T20:49:57.198+0900"
2024-07-31T20:49:57.199+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Retrieving AWS account details: @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:186 @module=aws tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider timestamp="2024-07-31T20:49:57.198+0900"
2024-07-31T20:49:57.199+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Retrieving caller identity from STS: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 tf_mux_provider="*schema.GRPCProviderServer" tf_rpc=ConfigureProvider @module=aws.aws-base timestamp="2024-07-31T20:49:57.199+0900"
2024-07-31T20:49:57.199+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: @module=aws.aws-base http.request.header.x_amz_date=20240731T114957Z net.peer.name=sts.ap-northeast-1.amazonaws.com tf_aws.signing_region="" aws.region=ap-northeast-1 http.request.header.amz_sdk_request="attempt=1; max=25" http.url=https://sts.ap-northeast-1.amazonaws.com/ tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider
  http.request.body=
  | Action=GetCallerIdentity&Version=2011-06-15
   http.request.header.content_type=application/x-www-form-urlencoded http.request_content_length=43 rpc.method=GetCallerIdentity rpc.service=STS http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/sts#1.30.3" rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 http.method=POST http.request.header.amz_sdk_invocation_id=22f1ed00-1da1-4f5c-bbff-84e604a2e6d5 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/sts/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" tf_mux_provider="*schema.GRPCProviderServer" timestamp="2024-07-31T20:49:57.199+0900"
2024-07-31T20:49:57.288+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 http.response_content_length=410 rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" aws.region=ap-northeast-1 http.response.header.content_type=text/xml tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 tf_aws.sdk=aws-sdk-go-v2 @module=aws.aws-base
  http.response.body=
  | <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
  |   <GetCallerIdentityResult>
  |     <Arn>arn:aws:iam::134057437479:user/administrator</Arn>
  |     <UserId>AIDA*************YIHO</UserId>
  |     <Account>134057437479</Account>
  |   </GetCallerIdentityResult>
  |   <ResponseMetadata>
  |     <RequestId>0d94eb61-25d6-401c-a0fd-d7b4502f1840</RequestId>
  |   </ResponseMetadata>
  | </GetCallerIdentityResponse>
   http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.status_code=200 rpc.method=GetCallerIdentity rpc.service=STS tf_rpc=ConfigureProvider http.duration=88 http.response.header.x_amzn_requestid=0d94eb61-25d6-401c-a0fd-d7b4502f1840 tf_aws.signing_region="" timestamp="2024-07-31T20:49:57.288+0900"
2024-07-31T20:49:57.288+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: Retrieved caller identity from STS: @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:39 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @module=aws.aws-base tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=39cc933c-756b-1ae3-60d0-bfd2e879ca36 timestamp="2024-07-31T20:49:57.288+0900"
2024-07-31T20:49:57.289+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_parameter_group.test16" references: []
2024-07-31T20:49:57.289+0900 [DEBUG] ReferenceTransformer: "aws_db_subnet_group.test" references: []
2024-07-31T20:49:57.289+0900 [DEBUG] ReferenceTransformer: "aws_db_parameter_group.test16" references: []
2024-07-31T20:49:57.294+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.request_content_length=119 @module=aws rpc.method=DescribeDBClusterParameterGroups tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90
  http.request.body=
  | Action=DescribeDBClusterParameterGroups&DBClusterParameterGroupName=test-aurora-postgresql16-cluster&Version=2014-10-31
   net.peer.name=rds.ap-northeast-1.amazonaws.com tf_aws.sdk=aws-sdk-go-v2 tf_resource_type=aws_rds_cluster_parameter_group @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" tf_mux_provider="*schema.GRPCProviderServer" http.request.header.content_type=application/x-www-form-urlencoded rpc.system=aws-api http.request.header.amz_sdk_invocation_id=a0da6854-4e02-48ff-aed4-710bccc7044a http.request.header.x_amz_date=20240731T114957Z http.url=https://rds.ap-northeast-1.amazonaws.com/ aws.region=ap-northeast-1 http.method=POST rpc.service=RDS http.request.header.amz_sdk_request="attempt=1; max=25" tf_aws.signing_region="" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource timestamp="2024-07-31T20:49:57.294+0900"
2024-07-31T20:49:57.294+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent:
  http.request.body=
  | Action=DescribeDBSubnetGroups&DBSubnetGroupName=test_db_group&Version=2014-10-31
   tf_req_id=221e0480-ed0e-78f0-fbb9-7c955fd527c6 http.request.header.content_type=application/x-www-form-urlencoded rpc.service=RDS tf_mux_provider="*schema.GRPCProviderServer" tf_resource_type=aws_db_subnet_group tf_rpc=ReadResource @module=aws http.request.header.amz_sdk_invocation_id=1607efbf-bac4-4b49-b716-3565db109572 tf_aws.sdk=aws-sdk-go-v2 tf_provider_addr=registry.terraform.io/hashicorp/aws http.method=POST http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" http.request.header.amz_sdk_request="attempt=1; max=25" tf_aws.signing_region="" http.url=https://rds.ap-northeast-1.amazonaws.com/ rpc.system=aws-api aws.region=ap-northeast-1 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.request.header.x_amz_date=20240731T114957Z http.request_content_length=80 net.peer.name=rds.ap-northeast-1.amazonaws.com rpc.method=DescribeDBSubnetGroups @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 timestamp="2024-07-31T20:49:57.294+0900"
2024-07-31T20:49:57.294+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: rpc.method=DescribeDBClusterParameterGroups tf_aws.signing_region="" aws.region=ap-northeast-1 http.url=https://rds.ap-northeast-1.amazonaws.com/ http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.request.header.amz_sdk_invocation_id=b7072218-e453-4e42-9df1-e87381194871 tf_resource_type=aws_rds_cluster_parameter_group @module=aws rpc.service=RDS rpc.system=aws-api http.request.header.x_amz_date=20240731T114957Z http.request_content_length=119 http.method=POST http.request.header.amz_sdk_request="attempt=1; max=25" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 net.peer.name=rds.ap-northeast-1.amazonaws.com tf_mux_provider="*schema.GRPCProviderServer" tf_rpc=ReadResource
  http.request.body=
  | Action=DescribeDBClusterParameterGroups&DBClusterParameterGroupName=test-aurora-postgresql15-cluster&Version=2014-10-31
   http.request.header.content_type=application/x-www-form-urlencoded tf_aws.sdk=aws-sdk-go-v2 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" timestamp="2024-07-31T20:49:57.294+0900"
2024-07-31T20:49:57.294+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 @module=aws http.request.header.x_amz_date=20240731T114957Z rpc.method=DescribeDBParameterGroups rpc.service=RDS http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" tf_mux_provider="*schema.GRPCProviderServer" tf_rpc=ReadResource tf_resource_type=aws_db_parameter_group http.request.header.amz_sdk_request="attempt=1; max=25" net.peer.name=rds.ap-northeast-1.amazonaws.com http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" http.request_content_length=106 http.url=https://rds.ap-northeast-1.amazonaws.com/ tf_aws.signing_region="" tf_provider_addr=registry.terraform.io/hashicorp/aws aws.region=ap-northeast-1
  http.request.body=
  | Action=DescribeDBParameterGroups&DBParameterGroupName=test-aurora-postgresql16-instance&Version=2014-10-31
   http.request.header.content_type=application/x-www-form-urlencoded tf_req_id=3df6f166-ab3f-c382-f607-24c69e58c03d @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.method=POST http.request.header.amz_sdk_invocation_id=fc00a131-90d0-43df-a828-a389265064d2 timestamp="2024-07-31T20:49:57.294+0900"
2024-07-31T20:49:57.383+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received:
  http.response.body=
  | <Desc********************************onse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClusterParameterGroupsResult><DBClusterParameterGroups><DBClusterParameterGroup><DBClusterParameterGroupArn>arn:aws:rds:ap-northeast-1:134057437479:cluster-pg:test-aurora-postgresql16-cluster</DBClusterParameterGroupArn><DBParameterGroupFamily>aurora-postgresql16</DBParameterGroupFamily><DBClusterParameterGroupName>test-aurora-postgresql16-cluster</DBClusterParameterGroupName><Description>for aurora-postgresql16</Description></DBClusterParameterGroup></DBClusterParameterGroups></DescribeDBClusterParameterGroupsResult><ResponseMetadata><RequestId>1478d08d-bb01-44d0-80f4-c4aeac798e81</RequestId></ResponseMetadata></DescribeDBClusterParameterGroupsResponse>
   http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" tf_provider_addr=registry.terraform.io/hashicorp/aws http.response.header.x_amzn_requestid=1478d08d-bb01-44d0-80f4-c4aeac798e81 tf_resource_type=aws_rds_cluster_parameter_group @module=aws http.response.header.strict_transport_security=max-age=31536000 http.status_code=200 tf_aws.sdk=aws-sdk-go-v2 tf_aws.signing_region="" tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90 tf_rpc=ReadResource http.duration=88 aws.region=ap-northeast-1 http.response.header.content_type=text/xml rpc.method=DescribeDBClusterParameterGroups rpc.service=RDS rpc.system=aws-api @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 tf_mux_provider="*schema.GRPCProviderServer" timestamp="2024-07-31T20:49:57.383+0900"
2024-07-31T20:49:57.383+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: aws.region=ap-northeast-1 tf_aws.sdk=aws-sdk-go-v2 tf_aws.signing_region=""
  http.request.body=
  | Action=DescribeDBClusterParameters&DBClusterParameterGroupName=test-aurora-postgresql16-cluster&Source=user&Version=2014-10-31
   http.request_content_length=126 rpc.method=DescribeDBClusterParameters http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.request.header.content_type=application/x-www-form-urlencoded tf_rpc=ReadResource http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.x_amz_date=20240731T114957Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" tf_resource_type=aws_rds_cluster_parameter_group http.method=POST tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90 http.url=https://rds.ap-northeast-1.amazonaws.com/ net.peer.name=rds.ap-northeast-1.amazonaws.com rpc.service=RDS rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 @module=aws http.request.header.amz_sdk_invocation_id=36866141-c05c-4b63-827a-6fd92572768d timestamp="2024-07-31T20:49:57.383+0900"
2024-07-31T20:49:57.391+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: tf_req_id=3df6f166-ab3f-c382-f607-24c69e58c03d tf_resource_type=aws_db_parameter_group http.duration=96 http.response.header.strict_transport_security=max-age=31536000 http.response.header.x_amzn_requestid=d5e626c1-c2ab-464c-b431-80eeb2fc7d22 rpc.service=RDS tf_aws.sdk=aws-sdk-go-v2 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource @module=aws http.response.header.date="Wed, 31 Jul 2024 11:50:00 GMT" rpc.system=aws-api tf_aws.signing_region="" tf_mux_provider="*schema.GRPCProviderServer"
  http.response.body=
  | <DescribeDBParameterGroupsResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBParameterGroupsResult><DBParameterGroups><DBParameterGroup><DBParameterGroupFamily>aurora-postgresql16</DBParameterGroupFamily><DBParameterGroupName>test-aurora-postgresql16-instance</DBParameterGroupName><DBParameterGroupArn>arn:aws:rds:ap-northeast-1:134057437479:pg:test-aurora-postgresql16-instance</DBParameterGroupArn><Description>for aurora-postgresql16</Description></DBParameterGroup></DBParameterGroups></DescribeDBParameterGroupsResult><ResponseMetadata><RequestId>d5e626c1-c2ab-464c-b431-80eeb2fc7d22</RequestId></ResponseMetadata></DescribeDBParameterGroupsResponse>
   rpc.method=DescribeDBParameterGroups @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 aws.region=ap-northeast-1 http.response.header.content_type=text/xml http.status_code=200 timestamp="2024-07-31T20:49:57.391+0900"
2024-07-31T20:49:57.391+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: tf_provider_addr=registry.terraform.io/hashicorp/aws rpc.service=RDS tf_aws.signing_region="" http.request.header.amz_sdk_invocation_id=c2b59fb4-62bb-40c0-89f9-73f0e008b237 http.url=https://rds.ap-northeast-1.amazonaws.com/ net.peer.name=rds.ap-northeast-1.amazonaws.com rpc.method=DescribeDBParameters tf_resource_type=aws_db_parameter_group aws.region=ap-northeast-1 http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.request_content_length=113 rpc.system=aws-api http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" tf_aws.sdk=aws-sdk-go-v2 tf_mux_provider="*schema.GRPCProviderServer" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45
  http.request.body=
  | Action=DescribeDBParameters&DBParameterGroupName=test-aurora-postgresql16-instance&Source=user&Version=2014-10-31
   http.request.header.content_type=application/x-www-form-urlencoded http.request.header.x_amz_date=20240731T114957Z tf_req_id=3df6f166-ab3f-c382-f607-24c69e58c03d @module=aws http.method=POST tf_rpc=ReadResource timestamp="2024-07-31T20:49:57.391+0900"
2024-07-31T20:49:57.391+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: tf_resource_type=aws_rds_cluster_parameter_group @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 @module=aws http.response.header.strict_transport_security=max-age=31536000 rpc.service=RDS
  http.response.body=
  | <Desc********************************onse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClusterParameterGroupsResult><DBClusterParameterGroups><DBClusterParameterGroup><DBClusterParameterGroupArn>arn:aws:rds:ap-northeast-1:134057437479:cluster-pg:test-aurora-postgresql15-cluster</DBClusterParameterGroupArn><DBParameterGroupFamily>aurora-postgresql15</DBParameterGroupFamily><DBClusterParameterGroupName>test-aurora-postgresql15-cluster</DBClusterParameterGroupName><Description>for aurora-postgresql15</Description></DBClusterParameterGroup></DBClusterParameterGroups></DescribeDBClusterParameterGroupsResult><ResponseMetadata><RequestId>98844498-02f6-4dc4-bd3c-3e74062790e9</RequestId></ResponseMetadata></DescribeDBClusterParameterGroupsResponse>
   http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.response.header.x_amzn_requestid=98844498-02f6-4dc4-bd3c-3e74062790e9 http.duration=96 tf_aws.signing_region="" rpc.method=DescribeDBClusterParameterGroups rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_mux_provider="*schema.GRPCProviderServer" aws.region=ap-northeast-1 http.response.header.content_type=text/xml http.status_code=200 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 tf_rpc=ReadResource timestamp="2024-07-31T20:49:57.391+0900"
2024-07-31T20:49:57.391+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.request.header.content_type=application/x-www-form-urlencoded http.request_content_length=126 tf_resource_type=aws_rds_cluster_parameter_group @module=aws http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" tf_mux_provider="*schema.GRPCProviderServer" rpc.system=aws-api
  http.request.body=
  | Action=DescribeDBClusterParameters&DBClusterParameterGroupName=test-aurora-postgresql15-cluster&Source=user&Version=2014-10-31
   net.peer.name=rds.ap-northeast-1.amazonaws.com @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.url=https://rds.ap-northeast-1.amazonaws.com/ rpc.service=RDS tf_aws.sdk=aws-sdk-go-v2 aws.region=ap-northeast-1 http.method=POST tf_provider_addr=registry.terraform.io/hashicorp/aws rpc.method=DescribeDBClusterParameters http.request.header.amz_sdk_invocation_id=e4818adc-49a7-40d7-980c-e94472633ccd http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.x_amz_date=20240731T114957Z tf_aws.signing_region="" tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 tf_rpc=ReadResource timestamp="2024-07-31T20:49:57.391+0900"
2024-07-31T20:49:57.405+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: rpc.method=DescribeDBClusterParameters rpc.service=RDS tf_rpc=ReadResource tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90 tf_resource_type=aws_rds_cluster_parameter_group
  http.response.body=
  | <DescribeDBClusterParametersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClusterParametersResult><Parameters><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>static</ApplyType><DataType>boolean</DataType><Description>Enables logical decoding.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.logical_replication</ParameterName><Source>user</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter></Parameters></DescribeDBClusterParametersResult><ResponseMetadata><RequestId>9bd18f3d-e194-4dc9-9a6a-ca6d8118fc02</RequestId></ResponseMetadata></DescribeDBClusterParametersResponse>
   http.response.header.content_type=text/xml http.response.header.strict_transport_security=max-age=31536000 tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws aws.region=ap-northeast-1 http.duration=21 http.status_code=200 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_aws.signing_region="" tf_mux_provider="*schema.GRPCProviderServer" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.response.header.x_amzn_requestid=9bd18f3d-e194-4dc9-9a6a-ca6d8118fc02 timestamp="2024-07-31T20:49:57.405+0900"
2024-07-31T20:49:57.405+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: aws.region=ap-northeast-1 http.request.header.x_amz_date=20240731T114957Z rpc.service=RDS rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 http.method=POST tf_mux_provider="*schema.GRPCProviderServer" @module=aws http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.content_type=application/x-www-form-urlencoded @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.request.header.amz_sdk_invocation_id=1b43a132-dd38-4915-b5c4-e26738b3f787 net.peer.name=rds.ap-northeast-1.amazonaws.com http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" rpc.method=DescribeDBClusterParameters tf_resource_type=aws_rds_cluster_parameter_group tf_rpc=ReadResource
  http.request.body=
  | Action=DescribeDBClusterParameters&DBClusterParameterGroupName=test-aurora-postgresql16-cluster&Source=system&Version=2014-10-31
   http.url=https://rds.ap-northeast-1.amazonaws.com/ tf_aws.signing_region="" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90 http.request_content_length=128 timestamp="2024-07-31T20:49:57.405+0900"
2024-07-31T20:49:57.410+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: http.status_code=200 rpc.service=RDS tf_aws.signing_region="" aws.region=ap-northeast-1
  http.response.body=
  | <DescribeDBParametersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBParametersResult><Parameters/></DescribeDBParametersResult><ResponseMetadata><RequestId>1616b10a-1263-4e76-b98c-d31d679e85d6</RequestId></ResponseMetadata></DescribeDBParametersResponse>
   http.response.header.content_type=text/xml rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=3df6f166-ab3f-c382-f607-24c69e58c03d @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.response.header.strict_transport_security=max-age=31536000 rpc.method=DescribeDBParameters http.response.header.x_amzn_requestid=1616b10a-1263-4e76-b98c-d31d679e85d6 tf_aws.sdk=aws-sdk-go-v2 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource @module=aws http.duration=18 http.response.header.date="Wed, 31 Jul 2024 11:50:00 GMT" tf_resource_type=aws_db_parameter_group timestamp="2024-07-31T20:49:57.410+0900"
2024-07-31T20:49:57.410+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 aws.region=ap-northeast-1 http.request_content_length=147 http.request.header.x_amz_date=20240731T114957Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" net.peer.name=rds.ap-northeast-1.amazonaws.com rpc.system=aws-api tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=3df6f166-ab3f-c382-f607-24c69e58c03d http.method=POST
  http.request.body=
  | Action=ListTagsForResource&ResourceName=arn%3Aaws%3Ards%3Aap-northeast-1%3A134057437479%3Apg%3Atest-aurora-postgresql16-instance&Version=2014-10-31
   http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" rpc.method=ListTagsForResource rpc.service=RDS tf_rpc=ReadResource @module=aws http.flavor=1.1 http.url=https://rds.ap-northeast-1.amazonaws.com/ tf_aws.sdk=aws-sdk-go tf_mux_provider="*schema.GRPCProviderServer" tf_resource_type=aws_db_parameter_group timestamp="2024-07-31T20:49:57.410+0900"
2024-07-31T20:49:57.413+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: aws.region=ap-northeast-1 http.status_code=200 rpc.service=RDS rpc.system=aws-api tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 @module=aws http.duration=21
  http.response.body=
  | <DescribeDBClusterParametersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClusterParametersResult><Parameters><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>static</ApplyType><DataType>boolean</DataType><Description>Enables logical decoding.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.logical_replication</ParameterName><Source>user</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter></Parameters></DescribeDBClusterParametersResult><ResponseMetadata><RequestId>b58d5e23-7b20-4905-a613-ac295377d4b5</RequestId></ResponseMetadata></DescribeDBClusterParametersResponse>
   http.response.header.strict_transport_security=max-age=31536000 http.response.header.x_amzn_requestid=b58d5e23-7b20-4905-a613-ac295377d4b5 tf_aws.signing_region="" tf_mux_provider="*schema.GRPCProviderServer" http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" rpc.method=DescribeDBClusterParameters tf_aws.sdk=aws-sdk-go-v2 tf_resource_type=aws_rds_cluster_parameter_group tf_rpc=ReadResource http.response.header.content_type=text/xml timestamp="2024-07-31T20:49:57.413+0900"
2024-07-31T20:49:57.413+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.method=POST tf_aws.signing_region="" @module=aws tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" http.url=https://rds.ap-northeast-1.amazonaws.com/ rpc.method=DescribeDBClusterParameters tf_mux_provider="*schema.GRPCProviderServer"
  http.request.body=
  | Action=DescribeDBClusterParameters&DBClusterParameterGroupName=test-aurora-postgresql15-cluster&Source=system&Version=2014-10-31
   http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.request.header.x_amz_date=20240731T114957Z tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.request.header.amz_sdk_invocation_id=4aa36694-0cea-4ed1-a73c-23a1f05363ef rpc.service=RDS rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_rpc=ReadResource aws.region=ap-northeast-1 http.request_content_length=128 net.peer.name=rds.ap-northeast-1.amazonaws.com tf_resource_type=aws_rds_cluster_parameter_group http.request.header.content_type=application/x-www-form-urlencoded timestamp="2024-07-31T20:49:57.413+0900"
2024-07-31T20:49:57.434+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: http.duration=28 tf_aws.sdk=aws-sdk-go-v2 tf_rpc=ReadResource aws.region=ap-northeast-1 http.response.header.content_type=text/xml http.status_code=200 rpc.method=DescribeDBClusterParameters rpc.service=RDS tf_aws.signing_region="" tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90
  http.response.body=
  | <DescribeDBClusterParametersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClusterParametersResult><Parameters><Parameter><AllowedValues>1-2147483647</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>The max time to wait for establishing write forwarding connections to the primary before giving up</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.connect_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>30</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>off,eventual,session,global</AllowedValues><ApplyType>static</ApplyType><DataType>list</DataType><Description>Control the degree of read consistency on a forwarding reader instance when using global write forwarding. Set apg_write_forward.consistency_mode to one of the allowed values to use write forwarding. For the definition of each allowed value, see the documentation on using write forwarding in an Amazon Aurora PostgreSQL DB cluster.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.consistency_mode</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>session</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-2147483647</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum allowed idle time between forwarded queries, when in a transaction.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.idle_in_transaction_session_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>86400000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-2147483647</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum allowed idle time between forwarded queries, when not in a transaction.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.idle_session_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>300000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-100</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>The percentage of max_connections that can be used for connections forwarded from Replicas</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.max_forwarding_connections_percent</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>25</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-100</AllowedValues><ApplyType>dynamic</ApplyType><DataType>float</DataType><Description>Number of tuple inserts, updates or deletes prior to analyze as a fraction of reltuples.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_analyze_scale_factor</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0.05</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of simultaneously running autovacuum worker processes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_max_workers</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>GREATEST({DBInstanceClassMemory/64371566592},3)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-2147483</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(s) Time to sleep between autovacuum runs.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_naptime</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>5</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>-1-10000</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>Vacuum cost amount available before napping, for autovacuum.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_vacuum_cost_limit</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>GREATEST({log(DBInstanceClassMemory/21474836480)*600},200)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-100</AllowedValues><ApplyType>dynamic</ApplyType><DataType>float</DataType><Description>Number of tuple updates or deletes prior to vacuum as a fraction of reltuples.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_vacuum_scale_factor</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0.1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the host name or IP address(es) to listen TDS to.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>babelfishpg_tds.listen_addresses</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>*</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-65535</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the TDS TCP port the server listens on.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>babelfishpg_tds.port</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1433</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the clients character set encoding.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>client_encoding</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>UTF8</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers main configuration file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>config_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/config/postgresql.conf</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Enables background workers for pg_cron</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>cron.use_background_workers</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>on</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers data directory.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>data_directory</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/db</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(8kB) Sets the planners assumption about the size of the disk cache.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>effective_cache_size</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>SUM({DBInstanceClassMemory/12038},-50003)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers hba configuration file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>hba_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/config/pg_hba.conf</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>on,off</AllowedValues><ApplyType>static</ApplyType><DataType>string</DataType><Description>Use of huge pages on Linux.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>huge_pages</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>on</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers ident configuration file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ident_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/config/pg_ident.conf</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(ms) Sets the maximum allowed duration of any idling transaction.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>idle_in_transaction_session_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>86400000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>true,false</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets whether GSSAPI user names should be treated case-insensitively.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>krb_caseins_users</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>false</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the host name or IP address(es) to listen to.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>listen_addresses</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>*</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Enables backward compatibility mode for privilege checks on large objects.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>lo_compat_privileges</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>-1-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(ms) Sets the minimum execution time above which autovacuum actions will be logged.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_autovacuum_min_duration</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>10000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>stderr,csvlog</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the destination for server log output.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_destination</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>stderr</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the destination directory for log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_directory</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/log/error</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the file permissions for log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_file_mode</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>0644</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>postgresql.log.%Y-%m-%d,postgresql.log.%Y-%m-%d-%H,postgresql.log.%Y-%m-%d-%H%M</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the file name pattern for log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_filename</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>postgresql.log.%Y-%m-%d-%H%M</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>static</ApplyType><DataType>boolean</DataType><Description>Start a subprocess to capture stderr output and/or csvlogs into log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>logging_collector</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Logs the host name in the connection logs.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_hostname</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Controls information prefixed to each log line.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_line_prefix</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>%t:%r:%u@%d:[%p]:</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>10-1440</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(min) Automatic log file rotation will occur after N minutes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_rotation_age</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>60</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the time zone to use in log messages.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_timezone</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>UTC</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>6-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of concurrent connections.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_connections</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>LEAST({DBInstanceClassMemory/9531392},5000)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>5-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of replication slots that the server can support.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_replication_slots</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>20</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>100-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(kB) Sets the maximum stack depth, in kilobytes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_stack_depth</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>6144</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>5-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of simultaneously running WAL sender processes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_wal_senders</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>10</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>md5,scram-sha-256</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Encrypt passwords.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>password_encryption</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-65535</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the TCP port the server listens on.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>port</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>{EndPointPort}</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>ENABLE_ALL,DISABLE_ALL</AllowedValues><ApplyType>static</ApplyType><DataType>string</DataType><Description>Enable or disable GDAL drivers used with PostGIS in Postgres 9.3.5 and above.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>postgis.gdal_enabled_drivers</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>ENABLE_ALL</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>md5+scram,scram</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Force authentication for connections with password stored locally.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.accepted_password_auth_method</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>md5+scram</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>RDS parameter to enable/disable adaptive autovacuum.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.adaptive_autovacuum</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Comma-delimited list of extensions that may be installed.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.allowed_extensions</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>on,off,datatypesonly</AllowedValues><ApplyType>static</ApplyType><DataType>string</DataType><Description>RDS parameter to enable/disable Babelfish for Aurora PostgreSQL.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.babelfish_status</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>off</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>disabled,debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>See log messages for RDS admin user actions in customer databases.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.force_admin_logging_level</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>disabled,debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>See log messages related to autovacuum operations.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.force_autovacuum_logging_level</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>WARNING</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Force SSL connections.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.force_ssl</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1440-10080</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>Amazon RDS will delete PostgreSQL log that are older than N minutes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.log_retention_period</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>4320</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>List of superuser-only variables for which we elevate rds_superuser modification statements.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.superuser_variables</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>session_replication_role</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>256-1073741823</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>(8kB) Sets the number of shared memory buffers used by the server.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>shared_buffers</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>SUM({DBInstanceClassMemory/12038},-50003)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>auto_explain,orafce,pgaudit,pg_ad_mapping,pg_bigm,pg_similarity,pg_stat_statements,pg_tle,pg_hint_plan,pg_prewarm,plprofiler,pglogical,pg_cron</AllowedValues><ApplyType>static</ApplyType><DataType>list</DataType><Description>Lists shared libraries to preload into server.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>shared_preload_libraries</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>pg_stat_statements</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Enables SSL connections.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Location of the SSL server authority file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_ca_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/ca-cert.pem</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Location of the SSL server certificate file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_cert_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/server-cert.pem</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Location of the SSL certificate revocation list directory.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_crl_dir</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/ssl_crl_dir/</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description> Location of the SSL server private key file</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_key_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/server-key.pem</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-8388607</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the number of connection slots reserved for superusers.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>superuser_reserved_connections</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>3</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>local,on,off</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the current transactions synchronization level.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>synchronous_commit</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>on</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the time zone for displaying and interpreting time stamps.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>timezone</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>UTC</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>100-1048576</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the size reserved for pg_stat_activity.current_query, in bytes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>track_activity_query_size</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>4096</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Collects timing statistics on database IO activity.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>track_io_timing</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-10000</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>Vacuum cost for a page not found in the buffer cache.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>vacuum_cost_page_miss</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter></Parameters></DescribeDBClusterParametersResult><ResponseMetadata><RequestId>afa4425a-9cef-4951-a016-ce191c6ebb10</RequestId></ResponseMetadata></DescribeDBClusterParametersResponse>
  | [truncated...]
   tf_resource_type=aws_rds_cluster_parameter_group tf_provider_addr=registry.terraform.io/hashicorp/aws http.response.header.strict_transport_security=max-age=31536000 http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.response.header.x_amzn_requestid=afa4425a-9cef-4951-a016-ce191c6ebb10 rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 @module=aws timestamp="2024-07-31T20:49:57.434+0900"
2024-07-31T20:49:57.435+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" http.request.header.x_amz_date=20240731T114957Z http.request_content_length=154 http.url=https://rds.ap-northeast-1.amazonaws.com/ @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 aws.region=ap-northeast-1 http.flavor=1.1 http.method=POST net.peer.name=rds.ap-northeast-1.amazonaws.com rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" tf_resource_type=aws_rds_cluster_parameter_group @module=aws
  http.request.body=
  | Action=ListTagsForResource&ResourceName=arn%3Aaws%3Ards%3Aap-northeast-1%3A134057437479%3Acluster-pg%3Atest-aurora-postgresql16-cluster&Version=2014-10-31
   http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" tf_aws.sdk=aws-sdk-go tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90 tf_rpc=ReadResource http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" rpc.method=ListTagsForResource rpc.service=RDS tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp="2024-07-31T20:49:57.435+0900"
2024-07-31T20:49:57.443+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: @module=aws rpc.method=DescribeDBClusterParameters rpc.system=aws-api tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 tf_resource_type=aws_rds_cluster_parameter_group http.duration=28 http.response.header.x_amzn_requestid=6b31e984-29ba-45cc-9f6f-ad4ad10bab1b http.status_code=200 tf_aws.signing_region="" tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws aws.region=ap-northeast-1
  http.response.body=
  | <DescribeDBClusterParametersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClusterParametersResult><Parameters><Parameter><AllowedValues>0-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><MinimumEngineVersion>15.3</MinimumEngineVersion><DataType>integer</DataType><Description>The max time to wait for establishing write forwarding connections to the primary before giving up</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.connect_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>30</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>off,eventual,session,global</AllowedValues><ApplyType>dynamic</ApplyType><MinimumEngineVersion>15.3</MinimumEngineVersion><DataType>list</DataType><Description>Control the degree of read consistency on a forwarding reader instance when using global write forwarding. Set apg_write_forward.consistency_mode to one of the allowed values to use write forwarding. For the definition of each allowed value, see the documentation on using write forwarding in an Amazon Aurora PostgreSQL DB cluster.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.consistency_mode</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>session</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><MinimumEngineVersion>15.3</MinimumEngineVersion><DataType>integer</DataType><Description>Sets the maximum allowed idle time between forwarded queries, when in a transaction.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.idle_in_transaction_session_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>86400000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><MinimumEngineVersion>15.3</MinimumEngineVersion><DataType>integer</DataType><Description>Sets the maximum allowed idle time between forwarded queries, when not in a transaction.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.idle_session_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>300000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-100</AllowedValues><ApplyType>static</ApplyType><MinimumEngineVersion>15.3</MinimumEngineVersion><DataType>integer</DataType><Description>The percentage of max_connections that can be used for connections forwarded from Replicas</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>apg_write_forward.max_forwarding_connections_percent</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>25</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-100</AllowedValues><ApplyType>dynamic</ApplyType><DataType>float</DataType><Description>Number of tuple inserts, updates or deletes prior to analyze as a fraction of reltuples.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_analyze_scale_factor</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0.05</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of simultaneously running autovacuum worker processes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_max_workers</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>GREATEST({DBInstanceClassMemory/64371566592},3)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-2147483</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(s) Time to sleep between autovacuum runs.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_naptime</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>5</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>-1-10000</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>Vacuum cost amount available before napping, for autovacuum.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_vacuum_cost_limit</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>GREATEST({log(DBInstanceClassMemory/21474836480)*600},200)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-100</AllowedValues><ApplyType>dynamic</ApplyType><DataType>float</DataType><Description>Number of tuple updates or deletes prior to vacuum as a fraction of reltuples.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>autovacuum_vacuum_scale_factor</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0.1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><MinimumEngineVersion>15.2</MinimumEngineVersion><DataType>string</DataType><Description>Sets the host name or IP address(es) to listen TDS to.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>babelfishpg_tds.listen_addresses</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>*</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-65535</AllowedValues><ApplyType>static</ApplyType><MinimumEngineVersion>15.2</MinimumEngineVersion><DataType>integer</DataType><Description>Sets the TDS TCP port the server listens on.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>babelfishpg_tds.port</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1433</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the clients character set encoding.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>client_encoding</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>UTF8</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers main configuration file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>config_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/config/postgresql.conf</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><MinimumEngineVersion>15.2</MinimumEngineVersion><DataType>string</DataType><Description>Enables background workers for pg_cron</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>cron.use_background_workers</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>on</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers data directory.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>data_directory</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/db</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(8kB) Sets the planners assumption about the size of the disk cache.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>effective_cache_size</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>SUM({DBInstanceClassMemory/12038},-50003)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers hba configuration file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>hba_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/config/pg_hba.conf</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>on,off</AllowedValues><ApplyType>static</ApplyType><DataType>string</DataType><Description>Use of huge pages on Linux.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>huge_pages</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>on</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the servers ident configuration file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ident_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/config/pg_ident.conf</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(ms) Sets the maximum allowed duration of any idling transaction.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>idle_in_transaction_session_timeout</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>86400000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>true,false</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets whether GSSAPI user names should be treated case-insensitively.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>krb_caseins_users</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>false</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Sets the host name or IP address(es) to listen to.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>listen_addresses</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>*</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Enables backward compatibility mode for privilege checks on large objects.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>lo_compat_privileges</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>-1-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(ms) Sets the minimum execution time above which autovacuum actions will be logged.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_autovacuum_min_duration</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>10000</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>stderr,csvlog</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the destination for server log output.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_destination</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>stderr</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the destination directory for log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_directory</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/log/error</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the file permissions for log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_file_mode</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>0644</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>postgresql.log.%Y-%m-%d,postgresql.log.%Y-%m-%d-%H,postgresql.log.%Y-%m-%d-%H%M</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the file name pattern for log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_filename</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>postgresql.log.%Y-%m-%d-%H%M</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>static</ApplyType><DataType>boolean</DataType><Description>Start a subprocess to capture stderr output and/or csvlogs into log files.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>logging_collector</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Logs the host name in the connection logs.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_hostname</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Controls information prefixed to each log line.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_line_prefix</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>%t:%r:%u@%d:[%p]:</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>10-1440</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(min) Automatic log file rotation will occur after N minutes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_rotation_age</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>60</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the time zone to use in log messages.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>log_timezone</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>UTC</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>6-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of concurrent connections.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_connections</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>LEAST({DBInstanceClassMemory/9531392},5000)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>5-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of replication slots that the server can support.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_replication_slots</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>20</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>100-2147483647</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>(kB) Sets the maximum stack depth, in kilobytes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_stack_depth</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>6144</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>5-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the maximum number of simultaneously running WAL sender processes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>max_wal_senders</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>10</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>md5,scram-sha-256</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Encrypt passwords.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>password_encryption</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1-65535</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the TCP port the server listens on.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>port</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>{EndPointPort}</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>ENABLE_ALL,DISABLE_ALL</AllowedValues><ApplyType>static</ApplyType><DataType>string</DataType><Description>Enable or disable GDAL drivers used with PostGIS in Postgres 9.3.5 and above.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>postgis.gdal_enabled_drivers</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>ENABLE_ALL</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>md5+scram,scram</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Force authentication for connections with password stored locally.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.accepted_password_auth_method</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>md5+scram</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>RDS parameter to enable/disable adaptive autovacuum.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.adaptive_autovacuum</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><MinimumEngineVersion>15.2</MinimumEngineVersion><DataType>string</DataType><Description>Comma-delimited list of extensions that may be installed.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.allowed_extensions</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>on,off,datatypesonly</AllowedValues><ApplyType>static</ApplyType><MinimumEngineVersion>15.2</MinimumEngineVersion><DataType>string</DataType><Description>RDS parameter to enable/disable Babelfish for Aurora PostgreSQL.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.babelfish_status</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>off</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>disabled,debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>See log messages for RDS admin user actions in customer databases.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.force_admin_logging_level</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>disabled,debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>See log messages related to autovacuum operations.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.force_autovacuum_logging_level</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>WARNING</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Force SSL connections.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.force_ssl</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>1440-10080</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>Amazon RDS will delete PostgreSQL log that are older than N minutes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.log_retention_period</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>4320</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-262143</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the number of connection slots reserved for rds_superusers.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.rds_superuser_reserved_connections</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>2</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>List of superuser-only variables for which we elevate rds_superuser modification statements.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>rds.superuser_variables</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>session_replication_role</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>256-1073741823</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>(8kB) Sets the number of shared memory buffers used by the server.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>shared_buffers</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>SUM({DBInstanceClassMemory/12038},-50003)</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>auto_explain,orafce,pgaudit,pg_similarity,pg_stat_statements,pg_tle,pg_hint_plan,pg_prewarm,plprofiler,pglogical,pg_cron,pg_ad_mapping</AllowedValues><ApplyType>static</ApplyType><DataType>list</DataType><Description>Lists shared libraries to preload into server.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>shared_preload_libraries</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>pg_stat_statements</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Enables SSL connections.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Location of the SSL server authority file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_ca_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/ca-cert.pem</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Location of the SSL server certificate file.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_cert_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/server-cert.pem</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>static</ApplyType><DataType>string</DataType><Description>Location of the SSL certificate revocation list directory.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_crl_dir</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/ssl_crl_dir/</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description> Location of the SSL server private key file</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>ssl_key_file</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>/rdsdbdata/rds-metadata/server-key.pem</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-8388607</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the number of connection slots reserved for superusers.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>superuser_reserved_connections</ParameterName><Source>system</Source><IsModifiable>false</IsModifiable><ParameterValue>3</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>local,on,off</AllowedValues><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the current transactions synchronization level.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>synchronous_commit</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>on</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><ApplyType>dynamic</ApplyType><DataType>string</DataType><Description>Sets the time zone for displaying and interpreting time stamps.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>timezone</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>UTC</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>100-1048576</AllowedValues><ApplyType>static</ApplyType><DataType>integer</DataType><Description>Sets the size reserved for pg_stat_activity.current_query, in bytes.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>track_activity_query_size</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>4096</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0,1</AllowedValues><ApplyType>dynamic</ApplyType><DataType>boolean</DataType><Description>Collects timing statistics on database IO activity.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>track_io_timing</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>1</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter><Parameter><AllowedValues>0-10000</AllowedValues><ApplyType>dynamic</ApplyType><DataType>integer</DataType><Description>Vacuum cost for a page not found in the buffer cache.</Description><ApplyMethod>pending-reboot</ApplyMethod><ParameterName>vacuum_cost_page_miss</ParameterName><Source>system</Source><IsModifiable>true</IsModifiable><ParameterValue>0</ParameterValue><SupportedEngineModes><member>provisioned</member></SupportedEngineModes></Parameter></Parameters></DescribeDBClusterParametersResult><ResponseMetadata><RequestId>6b31e984-29ba-45cc-9f6f-ad4ad10bab1b</RequestId></ResponseMetadata></DescribeDBClusterParametersResponse>
  | [truncated...]
   http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" tf_rpc=ReadResource tf_aws.sdk=aws-sdk-go-v2 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.response.header.content_type=text/xml http.response.header.strict_transport_security=max-age=31536000 rpc.service=RDS timestamp="2024-07-31T20:49:57.443+0900"
2024-07-31T20:49:57.444+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: tf_mux_provider="*schema.GRPCProviderServer" http.method=POST http.url=https://rds.ap-northeast-1.amazonaws.com/ http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 http.request.header.x_amz_date=20240731T114957Z http.request_content_length=154 tf_provider_addr=registry.terraform.io/hashicorp/aws rpc.service=RDS rpc.system=aws-api tf_aws.sdk=aws-sdk-go tf_resource_type=aws_rds_cluster_parameter_group http.flavor=1.1 net.peer.name=rds.ap-northeast-1.amazonaws.com http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" rpc.method=ListTagsForResource tf_rpc=ReadResource @module=aws aws.region=ap-northeast-1
  http.request.body=
  | Action=ListTagsForResource&ResourceName=arn%3Aaws%3Ards%3Aap-northeast-1%3A134057437479%3Acluster-pg%3Atest-aurora-postgresql15-cluster&Version=2014-10-31
   http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" timestamp="2024-07-31T20:49:57.444+0900"
2024-07-31T20:49:57.492+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received:
  http.response.body=
  | <ListTagsForResourceResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><ListTagsForResourceResult><TagList/></ListTagsForResourceResult><ResponseMetadata><RequestId>65be6f3e-2151-4beb-b294-3c4426903f20</RequestId></ResponseMetadata></ListTagsForResourceResponse>
   http.status_code=200 rpc.system=aws-api http.response.header.x_amzn_requestid=65be6f3e-2151-4beb-b294-3c4426903f20 tf_req_id=3df6f166-ab3f-c382-f607-24c69e58c03d http.response.header.content_type=text/xml aws.region=ap-northeast-1 http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.response.header.strict_transport_security=max-age=31536000 tf_aws.sdk=aws-sdk-go @module=aws http.duration=81 rpc.method=ListTagsForResource rpc.service=RDS tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_db_parameter_group @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157 tf_rpc=ReadResource timestamp="2024-07-31T20:49:57.492+0900"
2024-07-31T20:49:57.495+0900 [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_db_parameter_group.test16, 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
2024-07-31T20:49:57.507+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: tf_aws.sdk=aws-sdk-go tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws http.response.header.date="Wed, 31 Jul 2024 11:50:00 GMT" http.response.header.strict_transport_security=max-age=31536000 http.response.header.content_type=text/xml rpc.service=RDS rpc.system=aws-api rpc.method=ListTagsForResource tf_req_id=7a26dc3e-79e3-f14b-6dea-ce18f27eee90 tf_rpc=ReadResource http.duration=72
  http.response.body=
  | <ListTagsForResourceResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><ListTagsForResourceResult><TagList/></ListTagsForResourceResult><ResponseMetadata><RequestId>cdfdfab7-126e-493c-94f4-92c600eed60d</RequestId></ResponseMetadata></ListTagsForResourceResponse>
   aws.region=ap-northeast-1 http.response.header.x_amzn_requestid=cdfdfab7-126e-493c-94f4-92c600eed60d http.status_code=200 tf_mux_provider="*schema.GRPCProviderServer" tf_resource_type=aws_rds_cluster_parameter_group @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157 timestamp="2024-07-31T20:49:57.507+0900"
2024-07-31T20:49:57.510+0900 [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_rds_cluster_parameter_group.test16, 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
2024-07-31T20:49:57.517+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_rds_cluster_parameter_group http.duration=72 tf_mux_provider="*schema.GRPCProviderServer" http.response.header.content_type=text/xml http.response.header.strict_transport_security=max-age=31536000 http.response.header.x_amzn_requestid=a70f6678-5300-432b-b991-fb42977060e4 rpc.method=ListTagsForResource tf_req_id=af6a681b-a5ab-39ae-7c45-1c19b0467222 tf_rpc=ReadResource
  http.response.body=
  | <ListTagsForResourceResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><ListTagsForResourceResult><TagList/></ListTagsForResourceResult><ResponseMetadata><RequestId>a70f6678-5300-432b-b991-fb42977060e4</RequestId></ResponseMetadata></ListTagsForResourceResponse>
   tf_aws.sdk=aws-sdk-go @module=aws aws.region=ap-northeast-1 http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.status_code=200 rpc.service=RDS rpc.system=aws-api @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157 timestamp="2024-07-31T20:49:57.517+0900"
2024-07-31T20:49:57.551+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: rpc.service=RDS rpc.system=aws-api tf_req_id=221e0480-ed0e-78f0-fbb9-7c955fd527c6 http.duration=255
  http.response.body=
  | <DescribeDBSubnetGroupsResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBSubnetGroupsResult><DBSubnetGroups><DBSubnetGroup><SupportedNetworkTypes><member>IPV4</member></SupportedNetworkTypes><VpcId>vpc-0d8b3258149e01521</VpcId><DBSubnetGroupArn>arn:aws:rds:ap-northeast-1:134057437479:subgrp:test_db_group</DBSubnetGroupArn><Subnets><Subnet><SubnetIdentifier>subnet-03a10737b3d571644</SubnetIdentifier><SubnetStatus>Active</SubnetStatus><SubnetOutpost/><SubnetAvailabilityZone><Name>ap-northeast-1a</Name></SubnetAvailabilityZone></Subnet><Subnet><SubnetIdentifier>subnet-05c747e29471d56ea</SubnetIdentifier><SubnetStatus>Active</SubnetStatus><SubnetOutpost/><SubnetAvailabilityZone><Name>ap-northeast-1d</Name></SubnetAvailabilityZone></Subnet></Subnets><SubnetGroupStatus>Complete</SubnetGroupStatus><DBSubnetGroupDescription>Managed by Terraform</DBSubnetGroupDescription><DBSubnetGroupName>test_db_group</DBSubnetGroupName></DBSubnetGroup></DBSubnetGroups></DescribeDBSubnetGroupsResult><ResponseMetadata><RequestId>5c77b023-da12-409d-9a29-87b5ea04f978</RequestId></ResponseMetadata></DescribeDBSubnetGroupsResponse>
   http.response.header.content_type=text/xml http.status_code=200 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 aws.region=ap-northeast-1 http.response.header.x_amzn_requestid=5c77b023-da12-409d-9a29-87b5ea04f978 rpc.method=DescribeDBSubnetGroups tf_aws.sdk=aws-sdk-go-v2 tf_aws.signing_region="" tf_mux_provider="*schema.GRPCProviderServer" tf_rpc=ReadResource http.response.header.date="Wed, 31 Jul 2024 11:50:00 GMT" http.response.header.strict_transport_security=max-age=31536000 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_db_subnet_group @module=aws timestamp="2024-07-31T20:49:57.550+0900"
2024-07-31T20:49:57.552+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: rpc.method=ListTagsForResource rpc.service=RDS @module=aws aws.region=ap-northeast-1 http.method=POST http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" http.request.header.x_amz_date=20240731T114957Z http.request_content_length=131 tf_provider_addr=registry.terraform.io/hashicorp/aws http.url=https://rds.ap-northeast-1.amazonaws.com/ net.peer.name=rds.ap-northeast-1.amazonaws.com tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" tf_req_id=221e0480-ed0e-78f0-fbb9-7c955fd527c6 tf_resource_type=aws_db_subnet_group tf_mux_provider="*schema.GRPCProviderServer" http.flavor=1.1
  http.request.body=
  | Action=ListTagsForResource&ResourceName=arn%3Aaws%3Ards%3Aap-northeast-1%3A134057437479%3Asubgrp%3Atest_db_group&Version=2014-10-31
   rpc.system=aws-api tf_aws.sdk=aws-sdk-go timestamp="2024-07-31T20:49:57.551+0900"
2024-07-31T20:49:57.575+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157
  http.response.body=
  | <ListTagsForResourceResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><ListTagsForResourceResult><TagList/></ListTagsForResourceResult><ResponseMetadata><RequestId>0fa03421-fc76-4452-8ff9-f23a3f9b7281</RequestId></ResponseMetadata></ListTagsForResourceResponse>
   http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.response.header.strict_transport_security=max-age=31536000 tf_mux_provider="*schema.GRPCProviderServer" tf_rpc=ReadResource @module=aws aws.region=ap-northeast-1 http.response.header.content_type=text/xml http.response.header.x_amzn_requestid=0fa03421-fc76-4452-8ff9-f23a3f9b7281 rpc.method=ListTagsForResource rpc.system=aws-api tf_aws.sdk=aws-sdk-go http.duration=23 http.status_code=200 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_db_subnet_group rpc.service=RDS tf_req_id=221e0480-ed0e-78f0-fbb9-7c955fd527c6 timestamp="2024-07-31T20:49:57.575+0900"
2024-07-31T20:49:57.580+0900 [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_db_subnet_group.test, 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: planned value cty.StringVal("Managed by Terraform") for a non-computed attribute
      - .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
2024-07-31T20:49:57.581+0900 [DEBUG] expandResourceImports: skipping import address aws_rds_cluster.test already in state
2024-07-31T20:49:57.581+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster.test" references: []
2024-07-31T20:49:57.587+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: @module=aws
  http.request.body=
  | Action=DescribeDBClusters&DBClusterIdentifier=provisioning-rds&Version=2014-10-31
   http.url=https://rds.ap-northeast-1.amazonaws.com/ rpc.method=DescribeDBClusters rpc.system=aws-api @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 http.flavor=1.1 http.method=POST http.request_content_length=81 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" net.peer.name=rds.ap-northeast-1.amazonaws.com tf_aws.sdk=aws-sdk-go tf_req_id=18a9df1c-36de-5adb-28fd-64390aee2b0b tf_rpc=ReadResource tf_resource_type=aws_rds_cluster http.request.header.x_amz_date=20240731T114957Z rpc.service=RDS tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws aws.region=ap-northeast-1 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" timestamp="2024-07-31T20:49:57.587+0900"
2024-07-31T20:49:57.717+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: aws.region=ap-northeast-1 tf_aws.sdk=aws-sdk-go tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_rds_cluster tf_rpc=ReadResource http.duration=129 http.response.header.x_amzn_requestid=a60c918c-aaa0-4118-949b-525d6391c9ae http.response.header.content_type=text/xml http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" rpc.method=DescribeDBClusters rpc.system=aws-api tf_req_id=18a9df1c-36de-5adb-28fd-64390aee2b0b @module=aws
  http.response.body=
  | <DescribeDBClustersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClustersResult><DBClusters><DBCluster><CrossAccountClone>false</CrossAccountClone><AllocatedStorage>1</AllocatedStorage><AssociatedRoles/><AvailabilityZones><AvailabilityZone>ap-northeast-1c</AvailabilityZone><AvailabilityZone>ap-northeast-1a</AvailabilityZone><AvailabilityZone>ap-northeast-1d</AvailabilityZone></AvailabilityZones><ServerlessV2ScalingConfiguration><MaxCapacity>16.0</MaxCapacity><MinCapacity>2.0</MinCapacity></ServerlessV2ScalingConfiguration><ReadReplicaIdentifiers/><EngineVersion>16.2</EngineVersion><MasterUsername>postgres</MasterUsername><DBClusterMembers><DBClusterMember><DBInstanceIdentifier>rds-1</DBInstanceIdentifier><DBClusterParameterGroupStatus>pending-reboot</DBClusterParameterGroupStatus><PromotionTier>0</PromotionTier><IsClusterWriter>true</IsClusterWriter></DBClusterMember></DBClusterMembers><DBActivityStreamStatus>stopped</DBActivityStreamStatus><HttpEndpointEnabled>true</HttpEndpointEnabled><Port>5432</Port><BackupRetentionPeriod>1</BackupRetentionPeriod><DBClusterIdentifier>provisioning-rds</DBClusterIdentifier><DbClusterResourceId>cluster-WU37WGSCSXW5CAT3X736F45IGU</DbClusterResourceId><Status>available</Status><LatestRestorableTime>2024-07-31T11:48:34.954Z</LatestRestorableTime><PreferredBackupWindow>14:29-14:59</PreferredBackupWindow><DeletionProtection>false</DeletionProtection><Endpoint>provisioning-rds.cluster-c6qllygzpgah.ap-northeast-1.rds.amazonaws.com</Endpoint><EngineMode>provisioned</EngineMode><Engine>aurora-postgresql</Engine><ReaderEndpoint>provisioning-rds.cluster-ro-c6qllygzpgah.ap-northeast-1.rds.amazonaws.com</ReaderEndpoint><MasterUserSecret><SecretStatus>active</SecretStatus><SecretArn>arn:aws:secretsmanager:ap-northeast-1:134057437479:secret:rds!cluster-0bf66ff2-8d10-4389-ac31-aeeafd234d36-uJCdi1</SecretArn><KmsKeyId>arn:aws:kms:ap-northeast-1:134057437479:key/b7ee8a88-1e98-4a79-9b26-8430ca3029d9</KmsKeyId></MasterUserSecret><IAMDatabaseAuthenticationEnabled>false</IAMDatabaseAuthenticationEnabled><EarliestRestorableTime>2024-07-31T10:13:31.940Z</EarliestRestorableTime><NetworkType>IPV4</NetworkType><ClusterCreateTime>2024-07-31T10:04:05.397Z</ClusterCreateTime><ActivityStreamStatus>stopped</ActivityStreamStatus><MultiAZ>false</MultiAZ><DomainMemberships/><StorageEncrypted>false</StorageEncrypted><DBSubnetGroup>test_db_group</DBSubnetGroup><VpcSecurityGroups><VpcSecurityGroupMembership><VpcSecurityGroupId>sg-05c2ebee64fb92bc2</VpcSecurityGroupId><Status>active</Status></VpcSecurityGroupMembership></VpcSecurityGroups><TagList/><HostedZoneId>Z24O6O9L7SGTNB</HostedZoneId><PreferredMaintenanceWindow>thu:19:44-thu:20:14</PreferredMaintenanceWindow><DBClusterParameterGroup>test-aurora-postgresql16-cluster</DBClusterParameterGroup><EngineLifecycleSupport>open-source-rds-extended-support</EngineLifecycleSupport><AutoMinorVersionUpgrade>true</AutoMinorVersionUpgrade><CopyTagsToSnapshot>false</CopyTagsToSnapshot><DBClusterArn>arn:aws:rds:ap-northeast-1:134057437479:cluster:provisioning-rds</DBClusterArn></DBCluster></DBClusters></DescribeDBClustersResult><ResponseMetadata><RequestId>a60c918c-aaa0-4118-949b-525d6391c9ae</RequestId></ResponseMetadata></DescribeDBClustersResponse>
   rpc.service=RDS @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157 http.response.header.strict_transport_security=max-age=31536000 http.status_code=200 timestamp="2024-07-31T20:49:57.716+0900"
2024-07-31T20:49:57.718+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.url=https://rds.ap-northeast-1.amazonaws.com/ net.peer.name=rds.ap-northeast-1.amazonaws.com rpc.method=DescribeGlobalClusters tf_aws.sdk=aws-sdk-go http.flavor=1.1 http.method=POST http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" http.request.header.x_amz_date=20240731T114957Z tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=18a9df1c-36de-5adb-28fd-64390aee2b0b @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 http.request_content_length=193 rpc.service=RDS aws.region=ap-northeast-1 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" rpc.system=aws-api tf_resource_type=aws_rds_cluster tf_rpc=ReadResource @module=aws
  http.request.body=
  | Action=DescribeGlobalClusters&Filters.Filter.1.Name=db-cluster-id&Filters.Filter.1.Values.Value.1=arn%3Aaws%3Ards%3Aap-northeast-1%3A134057437479%3Acluster%3Aprovisioning-rds&Version=2014-10-31
   http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" timestamp="2024-07-31T20:49:57.717+0900"
2024-07-31T20:49:57.757+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: rpc.system=aws-api tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_rds_cluster tf_rpc=ReadResource @module=aws aws.region=ap-northeast-1 http.response.header.content_type=text/xml rpc.method=DescribeGlobalClusters tf_mux_provider="*schema.GRPCProviderServer" @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157 http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.response.header.x_amzn_requestid=1c991325-5984-4beb-9c15-09c291ec626b rpc.service=RDS tf_req_id=18a9df1c-36de-5adb-28fd-64390aee2b0b http.duration=38
  http.response.body=
  | <DescribeGlobalClustersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeGlobalClustersResult><GlobalClusters/></DescribeGlobalClustersResult><ResponseMetadata><RequestId>1c991325-5984-4beb-9c15-09c291ec626b</RequestId></ResponseMetadata></DescribeGlobalClustersResponse>
   http.response.header.strict_transport_security=max-age=31536000 http.status_code=200 tf_aws.sdk=aws-sdk-go timestamp="2024-07-31T20:49:57.756+0900"
2024-07-31T20:49:57.768+0900 [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_rds_cluster.test, 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:
      - .domain_iam_role_name: planned value cty.StringVal("") for a non-computed attribute
      - .iops: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
      - .copy_tags_to_snapshot: planned value cty.False for a non-computed attribute
      - .replication_source_identifier: planned value cty.StringVal("") for a non-computed attribute
      - .delete_automated_backups: planned value cty.True for a non-computed attribute
      - .iam_database_authentication_enabled: planned value cty.False for a non-computed attribute
      - .deletion_protection: planned value cty.False for a non-computed attribute
      - .enable_local_write_forwarding: planned value cty.False for a non-computed attribute
      - .db_cluster_instance_class: planned value cty.StringVal("") for a non-computed attribute
      - .global_cluster_identifier: planned value cty.StringVal("") for a non-computed attribute
      - .backtrack_window: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .enabled_cloudwatch_logs_exports: planned value cty.SetValEmpty(cty.String) for a non-computed attribute
      - .domain: planned value cty.StringVal("") for a non-computed attribute
2024-07-31T20:49:57.770+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.db_endpoint" references: []
2024-07-31T20:49:57.771+0900 [DEBUG] expandResourceImports: skipping import address aws_rds_cluster_instance.test already in state
2024-07-31T20:49:57.771+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_instance.test" references: []
2024-07-31T20:49:57.777+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: [DEBUG] Waiting for state to become: [success]
2024-07-31T20:49:57.778+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.request_content_length=41 rpc.service=SSM http.request.header.amz_sdk_request="attempt=1; max=25" http.method=POST http.request.header.x_amz_target=AmazonSSM.GetParameter aws.region=ap-northeast-1 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 tf_resource_type=aws_ssm_parameter tf_aws.signing_region="" tf_mux_provider="*schema.GRPCProviderServer" http.url=https://ssm.ap-northeast-1.amazonaws.com/ http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/ssm#1.52.3" http.request.header.x_amz_date=20240731T114957Z http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/ssm/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-target, Signature=*****" http.request.header.content_type=application/x-amz-json-1.1 rpc.method=GetParameter tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws
  http.request.body=
  | {"Name":"jdbc_url","WithDecryption":true}
   rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_req_id=26d655c4-9b2d-440f-c2af-e703ca021e23 tf_rpc=ReadResource http.request.header.amz_sdk_invocation_id=caa37aff-64a1-43d4-9b77-c5ff1fd59a41 net.peer.name=ssm.ap-northeast-1.amazonaws.com timestamp="2024-07-31T20:49:57.778+0900"
2024-07-31T20:49:57.778+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.method=POST http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" http.request_content_length=72 rpc.method=DescribeDBInstances aws.region=ap-northeast-1 net.peer.name=rds.ap-northeast-1.amazonaws.com tf_aws.sdk=aws-sdk-go tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_rds_cluster_instance
  http.request.body=
  | Action=DescribeDBInstances&DBInstanceIdentifier=rds-1&Version=2014-10-31
   http.request.header.x_amz_date=20240731T114957Z http.url=https://rds.ap-northeast-1.amazonaws.com/ http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=64447a82-03aa-c5e9-66cc-d8c5029a13e7 tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 @module=aws http.flavor=1.1 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" rpc.service=RDS timestamp="2024-07-31T20:49:57.778+0900"
2024-07-31T20:49:57.888+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: http.response.header.server=Server http.response.header.x_amzn_requestid=fd76ed04-d2e9-4490-8135-c7c8286ec47f rpc.method=GetParameter @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 @module=aws aws.region=ap-northeast-1 tf_aws.signing_region="" tf_req_id=26d655c4-9b2d-440f-c2af-e703ca021e23 http.duration=109 http.response.header.content_type=application/x-amz-json-1.1 rpc.system=aws-api tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_ssm_parameter
  http.response.body=
  | {"Parameter":{"ARN":"arn:aws:ssm:ap-northeast-1:134057437479:parameter/jdbc_url","DataType":"text","LastModifiedDate":1.722418659125E9,"Name":"jdbc_url","Type":"String","Value":"provisioning-rds.cluster-c6qllygzpgah.ap-northeast-1.rds.amazonaws.com","Version":1}}
   http.response.header.date="Wed, 31 Jul 2024 11:50:02 GMT" rpc.service=SSM tf_aws.sdk=aws-sdk-go-v2 tf_mux_provider="*schema.GRPCProviderServer" http.response.header.connection=keep-alive http.status_code=200 tf_rpc=ReadResource timestamp="2024-07-31T20:49:57.887+0900"
2024-07-31T20:49:57.888+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: aws.region=ap-northeast-1 http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" http.response.header.strict_transport_security=max-age=31536000 http.response.header.content_type=text/xml http.response.header.x_amzn_requestid=5001eaa7-012e-4808-a72c-056199a805b3 rpc.method=DescribeDBInstances rpc.system=aws-api tf_aws.sdk=aws-sdk-go tf_mux_provider="*schema.GRPCProviderServer" @module=aws
  http.response.body=
  | <DescribeDBInstancesResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBInstancesResult><DBInstances><DBInstance><AllocatedStorage>1</AllocatedStorage><AssociatedRoles/><DBParameterGroups><DBParameterGroup><DBParameterGroupName>test-aurora-postgresql16-instance</DBParameterGroupName><ParameterApplyStatus>pending-reboot</ParameterApplyStatus></DBParameterGroup></DBParameterGroups><AvailabilityZone>ap-northeast-1d</AvailabilityZone><DBSecurityGroups/><EngineVersion>16.2</EngineVersion><MasterUsername>postgres</MasterUsername><CertificateDetails><ValidTill>2025-07-31T10:56:02Z</ValidTill><CAIdentifier>rds-ca-rsa2048-g1</CAIdentifier></CertificateDetails><InstanceCreateTime>2024-07-31T10:24:25.348Z</InstanceCreateTime><DBInstanceClass>db.serverless</DBInstanceClass><StorageThroughput>0</StorageThroughput><HttpEndpointEnabled>false</HttpEndpointEnabled><ReadReplicaDBInstanceIdentifiers/><CustomerOwnedIpEnabled>false</CustomerOwnedIpEnabled><MonitoringInterval>0</MonitoringInterval><DBInstanceStatus>available</DBInstanceStatus><BackupRetentionPeriod>1</BackupRetentionPeriod><PromotionTier>0</PromotionTier><OptionGroupMemberships><OptionGroupMembership><OptionGroupName>default:aurora-postgresql-16</OptionGroupName><Status>in-sync</Status></OptionGroupMembership></OptionGroupMemberships><DedicatedLogVolume>false</DedicatedLogVolume><DBClusterIdentifier>provisioning-rds</DBClusterIdentifier><BackupTarget>region</BackupTarget><CACertificateIdentifier>rds-ca-rsa2048-g1</CACertificateIdentifier><DbInstancePort>0</DbInstancePort><DbiResourceId>db-B5ADFEZ254Q5WDBFDZJ6U3Z7JA</DbiResourceId><PreferredBackupWindow>14:29-14:59</PreferredBackupWindow><DeletionProtection>false</DeletionProtection><DBInstanceIdentifier>rds-1</DBInstanceIdentifier><DBInstanceArn>arn:aws:rds:ap-northeast-1:134057437479:db:rds-1</DBInstanceArn><Endpoint><HostedZoneId>Z24O6O9L7SGTNB</HostedZoneId><Address>rds-1.c6qllygzpgah.ap-northeast-1.rds.amazonaws.com</Address><Port>5432</Port></Endpoint><Engine>aurora-postgresql</Engine><PubliclyAccessible>false</PubliclyAccessible><IAMDatabaseAuthenticationEnabled>false</IAMDatabaseAuthenticationEnabled><NetworkType>IPV4</NetworkType><PerformanceInsightsEnabled>false</PerformanceInsightsEnabled><MultiAZ>false</MultiAZ><DomainMemberships/><StorageEncrypted>false</StorageEncrypted><DBSubnetGroup><VpcId>vpc-0d8b3258149e01521</VpcId><Subnets><Subnet><SubnetIdentifier>subnet-03a10737b3d571644</SubnetIdentifier><SubnetStatus>Active</SubnetStatus><SubnetOutpost/><SubnetAvailabilityZone><Name>ap-northeast-1a</Name></SubnetAvailabilityZone></Subnet><Subnet><SubnetIdentifier>subnet-05c747e29471d56ea</SubnetIdentifier><SubnetStatus>Active</SubnetStatus><SubnetOutpost/><SubnetAvailabilityZone><Name>ap-northeast-1d</Name></SubnetAvailabilityZone></Subnet></Subnets><SubnetGroupStatus>Complete</SubnetGroupStatus><DBSubnetGroupDescription>Managed by Terraform</DBSubnetGroupDescription><DBSubnetGroupName>test_db_group</DBSubnetGroupName></DBSubnetGroup><VpcSecurityGroups><VpcSecurityGroupMembership><VpcSecurityGroupId>sg-05c2ebee64fb92bc2</VpcSecurityGroupId><Status>active</Status></VpcSecurityGroupMembership></VpcSecurityGroups><TagList/><LicenseModel>postgresql-license</LicenseModel><PendingModifiedValues/><PreferredMaintenanceWindow>wed:13:14-wed:13:44</PreferredMaintenanceWindow><StorageType>aurora</StorageType><EngineLifecycleSupport>open-source-rds-extended-support</EngineLifecycleSupport><AutoMinorVersionUpgrade>true</AutoMinorVersionUpgrade><CopyTagsToSnapshot>false</CopyTagsToSnapshot></DBInstance></DBInstances></DescribeDBInstancesResult><ResponseMetadata><RequestId>5001eaa7-012e-4808-a72c-056199a805b3</RequestId></ResponseMetadata></DescribeDBInstancesResponse>
   tf_resource_type=aws_rds_cluster_instance tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=64447a82-03aa-c5e9-66cc-d8c5029a13e7 rpc.service=RDS http.status_code=200 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157 http.duration=109 timestamp="2024-07-31T20:49:57.887+0900"
2024-07-31T20:49:57.888+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: net.peer.name=rds.ap-northeast-1.amazonaws.com rpc.system=aws-api tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=*****" http.url=https://rds.ap-northeast-1.amazonaws.com/ rpc.service=RDS tf_resource_type=aws_rds_cluster_instance tf_rpc=ReadResource http.request.header.x_amz_date=20240731T114957Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.55.2 (go1.22.5; darwin; arm64)" rpc.method=DescribeDBClusters http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" http.request_content_length=81 tf_aws.sdk=aws-sdk-go tf_mux_provider="*schema.GRPCProviderServer" @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:109 aws.region=ap-northeast-1 http.flavor=1.1 http.method=POST
  http.request.body=
  | Action=DescribeDBClusters&DBClusterIdentifier=provisioning-rds&Version=2014-10-31
   tf_req_id=64447a82-03aa-c5e9-66cc-d8c5029a13e7 timestamp="2024-07-31T20:49:57.888+0900"
2024-07-31T20:49:57.889+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.request.header.amz_sdk_invocation_id=f70fb058-b9fa-47da-8c28-e00361153127 tf_rpc=ReadResource http.method=POST http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/ssm/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-target, Signature=*****" http.request.header.x_amz_target=AmazonSSM.DescribeParameters http.url=https://ssm.ap-northeast-1.amazonaws.com/ tf_aws.signing_region=""
  http.request.body=
  | {"ParameterFilters":[{"Key":"Name","Option":"Equals","Values":["jdbc_url"]}]}
   rpc.system=aws-api tf_resource_type=aws_ssm_parameter aws.region=ap-northeast-1 http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.x_amz_date=20240731T114957Z http.request_content_length=77 rpc.service=SSM tf_mux_provider="*schema.GRPCProviderServer" rpc.method=DescribeParameters tf_provider_addr=registry.terraform.io/hashicorp/aws http.request.header.content_type=application/x-amz-json-1.1 tf_aws.sdk=aws-sdk-go-v2 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 @module=aws http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/ssm#1.52.3" net.peer.name=ssm.ap-northeast-1.amazonaws.com tf_req_id=26d655c4-9b2d-440f-c2af-e703ca021e23 timestamp="2024-07-31T20:49:57.889+0900"
2024-07-31T20:49:57.925+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: @module=aws http.response.header.content_type=application/x-amz-json-1.1 http.response.header.x_amzn_requestid=ced1906d-6133-45fa-9146-345f32288ea4 rpc.method=DescribeParameters tf_req_id=26d655c4-9b2d-440f-c2af-e703ca021e23 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.response.header.date="Wed, 31 Jul 2024 11:50:02 GMT" http.response.header.server=Server rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_mux_provider="*schema.GRPCProviderServer"
  http.response.body=
  | {"Parameters":[{"ARN":"arn:aws:ssm:ap-northeast-1:134057437479:parameter/jdbc_url","DataType":"text","LastModifiedDate":1.722418659125E9,"LastModifiedUser":"arn:aws:iam::134057437479:user/administrator","Name":"jdbc_url","Policies":[],"Tier":"Standard","Type":"String","Version":1}]}
   http.response.header.connection=keep-alive http.status_code=200 rpc.service=SSM tf_aws.signing_region="" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource aws.region=ap-northeast-1 http.duration=36 tf_resource_type=aws_ssm_parameter timestamp="2024-07-31T20:49:57.925+0900"
2024-07-31T20:49:57.926+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: net.peer.name=ssm.ap-northeast-1.amazonaws.com rpc.service=SSM tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=26d655c4-9b2d-440f-c2af-e703ca021e23 rpc.method=ListTagsForResource http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/ssm/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-target, Signature=*****" http.request.header.x_amz_target=AmazonSSM.ListTagsForResource http.method=POST http.request.header.x_amz_date=20240731T114957Z http.url=https://ssm.ap-northeast-1.amazonaws.com/ http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/ssm#1.52.3" tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 aws.region=ap-northeast-1 tf_rpc=ReadResource @module=aws tf_resource_type=aws_ssm_parameter tf_aws.sdk=aws-sdk-go-v2 http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.content_type=application/x-amz-json-1.1 http.request.header.amz_sdk_invocation_id=ceaeaef6-4e05-47c2-8db9-de5410dc837f http.request_content_length=52 rpc.system=aws-api tf_aws.signing_region=""
  http.request.body=
  | {"ResourceId":"jdbc_url","ResourceType":"Parameter"}
   timestamp="2024-07-31T20:49:57.926+0900"
2024-07-31T20:49:57.998+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: @module=aws aws.region=ap-northeast-1 http.response.header.content_type=text/xml http.status_code=200 rpc.method=DescribeDBClusters tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=64447a82-03aa-c5e9-66cc-d8c5029a13e7 http.duration=109
  http.response.body=
  | <DescribeDBClustersResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><DescribeDBClustersResult><DBClusters><DBCluster><CrossAccountClone>false</CrossAccountClone><AllocatedStorage>1</AllocatedStorage><AssociatedRoles/><AvailabilityZones><AvailabilityZone>ap-northeast-1c</AvailabilityZone><AvailabilityZone>ap-northeast-1a</AvailabilityZone><AvailabilityZone>ap-northeast-1d</AvailabilityZone></AvailabilityZones><ServerlessV2ScalingConfiguration><MaxCapacity>16.0</MaxCapacity><MinCapacity>2.0</MinCapacity></ServerlessV2ScalingConfiguration><ReadReplicaIdentifiers/><EngineVersion>16.2</EngineVersion><MasterUsername>postgres</MasterUsername><DBClusterMembers><DBClusterMember><DBInstanceIdentifier>rds-1</DBInstanceIdentifier><DBClusterParameterGroupStatus>pending-reboot</DBClusterParameterGroupStatus><PromotionTier>0</PromotionTier><IsClusterWriter>true</IsClusterWriter></DBClusterMember></DBClusterMembers><DBActivityStreamStatus>stopped</DBActivityStreamStatus><HttpEndpointEnabled>true</HttpEndpointEnabled><Port>5432</Port><BackupRetentionPeriod>1</BackupRetentionPeriod><DBClusterIdentifier>provisioning-rds</DBClusterIdentifier><DbClusterResourceId>cluster-WU37WGSCSXW5CAT3X736F45IGU</DbClusterResourceId><Status>available</Status><LatestRestorableTime>2024-07-31T11:48:34.954Z</LatestRestorableTime><PreferredBackupWindow>14:29-14:59</PreferredBackupWindow><DeletionProtection>false</DeletionProtection><Endpoint>provisioning-rds.cluster-c6qllygzpgah.ap-northeast-1.rds.amazonaws.com</Endpoint><EngineMode>provisioned</EngineMode><Engine>aurora-postgresql</Engine><ReaderEndpoint>provisioning-rds.cluster-ro-c6qllygzpgah.ap-northeast-1.rds.amazonaws.com</ReaderEndpoint><MasterUserSecret><SecretStatus>active</SecretStatus><SecretArn>arn:aws:secretsmanager:ap-northeast-1:134057437479:secret:rds!cluster-0bf66ff2-8d10-4389-ac31-aeeafd234d36-uJCdi1</SecretArn><KmsKeyId>arn:aws:kms:ap-northeast-1:134057437479:key/b7ee8a88-1e98-4a79-9b26-8430ca3029d9</KmsKeyId></MasterUserSecret><IAMDatabaseAuthenticationEnabled>false</IAMDatabaseAuthenticationEnabled><EarliestRestorableTime>2024-07-31T10:13:31.940Z</EarliestRestorableTime><NetworkType>IPV4</NetworkType><ClusterCreateTime>2024-07-31T10:04:05.397Z</ClusterCreateTime><ActivityStreamStatus>stopped</ActivityStreamStatus><MultiAZ>false</MultiAZ><DomainMemberships/><StorageEncrypted>false</StorageEncrypted><DBSubnetGroup>test_db_group</DBSubnetGroup><VpcSecurityGroups><VpcSecurityGroupMembership><VpcSecurityGroupId>sg-05c2ebee64fb92bc2</VpcSecurityGroupId><Status>active</Status></VpcSecurityGroupMembership></VpcSecurityGroups><TagList/><HostedZoneId>Z24O6O9L7SGTNB</HostedZoneId><PreferredMaintenanceWindow>thu:19:44-thu:20:14</PreferredMaintenanceWindow><DBClusterParameterGroup>test-aurora-postgresql16-cluster</DBClusterParameterGroup><EngineLifecycleSupport>open-source-rds-extended-support</EngineLifecycleSupport><AutoMinorVersionUpgrade>true</AutoMinorVersionUpgrade><CopyTagsToSnapshot>false</CopyTagsToSnapshot><DBClusterArn>arn:aws:rds:ap-northeast-1:134057437479:cluster:provisioning-rds</DBClusterArn></DBCluster></DBClusters></DescribeDBClustersResult><ResponseMetadata><RequestId>78dd7f9e-0f04-4587-848a-a348e23b49a2</RequestId></ResponseMetadata></DescribeDBClustersResponse>
   http.response.header.date="Wed, 31 Jul 2024 11:50:01 GMT" rpc.service=RDS tf_mux_provider="*schema.GRPCProviderServer" http.response.header.strict_transport_security=max-age=31536000 tf_aws.sdk=aws-sdk-go tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.55/logger.go:157 http.response.header.x_amzn_requestid=78dd7f9e-0f04-4587-848a-a348e23b49a2 rpc.system=aws-api tf_resource_type=aws_rds_cluster_instance timestamp="2024-07-31T20:49:57.998+0900"
2024-07-31T20:49:57.999+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: http.response.header.date="Wed, 31 Jul 2024 11:50:02 GMT" http.response.header.server=Server http.response.header.x_amzn_requestid=e86bd510-55f6-433d-aaa2-baef9361eb26 rpc.service=SSM
  http.response.body=
  | {"TagList":[]}
   http.response.header.content_type=application/x-amz-json-1.1 tf_aws.signing_region="" tf_req_id=26d655c4-9b2d-440f-c2af-e703ca021e23 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 aws.region=ap-northeast-1 http.duration=72 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource http.response.header.connection=keep-alive http.status_code=200 rpc.method=ListTagsForResource @module=aws tf_resource_type=aws_ssm_parameter timestamp="2024-07-31T20:49:57.998+0900"
2024-07-31T20:49:58.003+0900 [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_ssm_parameter.db_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:
      - .description: planned value cty.StringVal("") for a non-computed attribute
      - .allowed_pattern: planned value cty.StringVal("") for a non-computed attribute
      - .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
2024-07-31T20:49:58.004+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.reference_test" references: []
2024-07-31T20:49:58.006+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: [DEBUG] Waiting for state to become: [success]
2024-07-31T20:49:58.006+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: rpc.system=aws-api http.method=POST http.request.header.amz_sdk_request="attempt=1; max=25" http.request_content_length=42 rpc.method=GetParameter http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/ssm/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-target, Signature=*****" http.request.header.content_type=application/x-amz-json-1.1 http.request.header.x_amz_date=20240731T114958Z
  http.request.body=
  | {"Name":"reference","WithDecryption":true}
   net.peer.name=ssm.ap-northeast-1.amazonaws.com tf_req_id=b51ae6cd-773e-ac30-8918-8806e267d4ca tf_resource_type=aws_ssm_parameter aws.region=ap-northeast-1 http.url=https://ssm.ap-northeast-1.amazonaws.com/ tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws tf_aws.sdk=aws-sdk-go-v2 tf_mux_provider="*schema.GRPCProviderServer" http.request.header.x_amz_target=AmazonSSM.GetParameter http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/ssm#1.52.3" tf_aws.signing_region="" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 http.request.header.amz_sdk_invocation_id=b5498176-45dd-4682-83a0-fcc6732587fe rpc.service=SSM tf_rpc=ReadResource timestamp="2024-07-31T20:49:58.006+0900"
2024-07-31T20:49:58.006+0900 [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_rds_cluster_instance.test, 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:
      - .monitoring_interval: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
      - .promotion_tier: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .auto_minor_version_upgrade: planned value cty.True for a non-computed attribute
      - .copy_tags_to_snapshot: planned value cty.False for a non-computed attribute
      - .custom_iam_instance_profile: planned value cty.StringVal("") for a non-computed attribute
2024-07-31T20:49:58.047+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received:
  http.response.body=
  | {"Parameter":{"ARN":"arn:aws:ssm:ap-northeast-1:134057437479:parameter/reference","DataType":"text","LastModifiedDate":1.722418659384E9,"Name":"reference","Type":"String","Value":"provisioning-rds.cluster-c6qllygzpgah.ap-northeast-1.rds.amazonaws.com","Version":1}}
   http.response.header.server=Server http.response.header.x_amzn_requestid=377e603b-8795-4901-9893-8beca367a593 http.status_code=200 rpc.method=GetParameter rpc.service=SSM @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 tf_mux_provider="*schema.GRPCProviderServer" tf_resource_type=aws_ssm_parameter tf_aws.signing_region="" aws.region=ap-northeast-1 http.duration=40 http.response.header.connection=keep-alive tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws http.response.header.content_type=application/x-amz-json-1.1 http.response.header.date="Wed, 31 Jul 2024 11:50:02 GMT" tf_req_id=b51ae6cd-773e-ac30-8918-8806e267d4ca tf_rpc=ReadResource rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 timestamp="2024-07-31T20:49:58.046+0900"
2024-07-31T20:49:58.047+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.request.header.x_amz_target=AmazonSSM.DescribeParameters http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) m/C aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/ssm#1.52.3" rpc.system=aws-api
  http.request.body=
  | {"ParameterFilters":[{"Key":"Name","Option":"Equals","Values":["reference"]}]}
   http.request.header.amz_sdk_invocation_id=be17a59a-036f-427d-92d0-af334d567040 http.request.header.x_amz_date=20240731T114958Z net.peer.name=ssm.ap-northeast-1.amazonaws.com tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 aws.region=ap-northeast-1 http.url=https://ssm.ap-northeast-1.amazonaws.com/ rpc.service=SSM tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws http.request.header.amz_sdk_request="attempt=1; max=25" http.request_content_length=78 rpc.method=DescribeParameters tf_aws.sdk=aws-sdk-go-v2 http.method=POST http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/ssm/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-target, Signature=*****" tf_req_id=b51ae6cd-773e-ac30-8918-8806e267d4ca http.request.header.content_type=application/x-amz-json-1.1 tf_aws.signing_region="" tf_resource_type=aws_ssm_parameter timestamp="2024-07-31T20:49:58.047+0900"
2024-07-31T20:49:58.074+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_ssm_parameter
  http.response.body=
  | {"Parameters":[{"ARN":"arn:aws:ssm:ap-northeast-1:134057437479:parameter/reference","DataType":"text","LastModifiedDate":1.722418659384E9,"LastModifiedUser":"arn:aws:iam::134057437479:user/administrator","Name":"reference","Policies":[],"Tier":"Standard","Type":"String","Version":1}]}
   http.response.header.connection=keep-alive http.response.header.server=Server rpc.method=DescribeParameters tf_aws.sdk=aws-sdk-go-v2 tf_aws.signing_region="" http.duration=27 http.response.header.content_type=application/x-amz-json-1.1 http.response.header.x_amzn_requestid=f28cf619-ba28-4b67-8f97-415f67bfe19b rpc.service=SSM rpc.system=aws-api tf_req_id=b51ae6cd-773e-ac30-8918-8806e267d4ca @module=aws aws.region=ap-northeast-1 http.response.header.date="Wed, 31 Jul 2024 11:50:02 GMT" http.status_code=200 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 tf_rpc=ReadResource timestamp="2024-07-31T20:49:58.074+0900"
2024-07-31T20:49:58.075+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: @module=aws aws.region=ap-northeast-1 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/ssm#1.52.3" tf_rpc=ReadResource net.peer.name=ssm.ap-northeast-1.amazonaws.com rpc.method=ListTagsForResource tf_req_id=b51ae6cd-773e-ac30-8918-8806e267d4ca
  http.request.body=
  | {"ResourceId":"reference","ResourceType":"Parameter"}
   http.request.header.content_type=application/x-amz-json-1.1 http.request.header.x_amz_target=AmazonSSM.ListTagsForResource tf_mux_provider="*schema.GRPCProviderServer" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/ssm/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-target, Signature=*****" http.request_content_length=53 tf_aws.sdk=aws-sdk-go-v2 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_ssm_parameter @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 tf_aws.signing_region="" rpc.system=aws-api http.method=POST http.request.header.amz_sdk_invocation_id=461fddc4-f94b-496f-9030-4cfabd877f95 http.request.header.x_amz_date=20240731T114958Z rpc.service=SSM http.request.header.amz_sdk_request="attempt=1; max=25" http.url=https://ssm.ap-northeast-1.amazonaws.com/ timestamp="2024-07-31T20:49:58.075+0900"
2024-07-31T20:49:58.140+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: rpc.method=ListTagsForResource tf_aws.signing_region="" tf_mux_provider="*schema.GRPCProviderServer" http.status_code=200 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=b51ae6cd-773e-ac30-8918-8806e267d4ca tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45
  http.response.body=
  | {"TagList":[]}
   http.response.header.content_type=application/x-amz-json-1.1 http.response.header.date="Wed, 31 Jul 2024 11:50:02 GMT" http.response.header.server=Server http.response.header.x_amzn_requestid=711c26a1-6669-49c2-a567-499d81bb4cf3 rpc.service=SSM @module=aws aws.region=ap-northeast-1 http.response.header.connection=keep-alive rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 http.duration=64 tf_resource_type=aws_ssm_parameter timestamp="2024-07-31T20:49:58.140+0900"
2024-07-31T20:49:58.145+0900 [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_ssm_parameter.reference_test, 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
      - .description: planned value cty.StringVal("") for a non-computed attribute
      - .allowed_pattern: planned value cty.StringVal("") for a non-computed attribute
2024-07-31T20:49:58.146+0900 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-07-31T20:49:58.153+0900 [INFO]  provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 id=28766
2024-07-31T20:49:58.153+0900 [DEBUG] provider: plugin exited
2024-07-31T20:49:58.153+0900 [DEBUG] building apply graph to check for errors
2024-07-31T20:49:58.153+0900 [DEBUG] ProviderTransformer: "aws_db_subnet_group.test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.153+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_parameter_group.test15 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.153+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.db_endpoint (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.153+0900 [DEBUG] ProviderTransformer: "aws_db_parameter_group.test16 (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.153+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.reference_test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.154+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_instance.test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.154+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_parameter_group.test16 (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.154+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster.test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_instance.test (expand)" references: [aws_rds_cluster.test (expand) aws_rds_cluster.test (expand) aws_rds_cluster.test (expand) aws_db_parameter_group.test16 (expand) aws_rds_cluster.test (expand)]
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_parameter_group.test16 (expand)" references: []
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "aws_db_parameter_group.test16 (expand)" references: []
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.reference_test (expand)" references: [aws_ssm_parameter.db_endpoint (expand)]
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.db_endpoint (expand)" references: [aws_rds_cluster.test (expand)]
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster.test (expand)" references: [aws_db_subnet_group.test (expand) aws_rds_cluster_parameter_group.test16 (expand)]
2024-07-31T20:49:58.154+0900 [DEBUG] ReferenceTransformer: "aws_db_subnet_group.test (expand)" references: []
2024-07-31T20:49:58.154+0900 [DEBUG] pruneUnusedNodes: aws_ssm_parameter.reference_test (expand) is no longer needed, removing
2024-07-31T20:49:58.154+0900 [DEBUG] pruneUnusedNodes: aws_rds_cluster_instance.test (expand) is no longer needed, removing
2024-07-31T20:49:58.154+0900 [DEBUG] pruneUnusedNodes: aws_db_parameter_group.test16 (expand) is no longer needed, removing
2024-07-31T20:49:58.154+0900 [DEBUG] pruneUnusedNodes: aws_ssm_parameter.db_endpoint (expand) is no longer needed, removing
2024-07-31T20:49:58.154+0900 [DEBUG] pruneUnusedNodes: aws_rds_cluster.test (expand) is no longer needed, removing
2024-07-31T20:49:58.154+0900 [DEBUG] pruneUnusedNodes: aws_rds_cluster_parameter_group.test16 (expand) is no longer needed, removing
2024-07-31T20:49:58.154+0900 [DEBUG] pruneUnusedNodes: aws_db_subnet_group.test (expand) is no longer needed, removing
2024-07-31T20:49:58.188+0900 [DEBUG] command: asking for input: "\nDo you want to perform these actions?"
2024-07-31T20:50:00.621+0900 [INFO]  backend/local: apply calling Apply
2024-07-31T20:50:00.621+0900 [DEBUG] Building and walking apply graph for NormalMode plan
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_parameter_group.test16 (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.db_endpoint (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_ssm_parameter.reference_test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_instance.test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_db_subnet_group.test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster_parameter_group.test15 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_rds_cluster.test (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.622+0900 [DEBUG] ProviderTransformer: "aws_db_parameter_group.test16 (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2024-07-31T20:50:00.623+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_instance.test (expand)" references: [aws_rds_cluster.test (expand) aws_db_parameter_group.test16 (expand) aws_rds_cluster.test (expand) aws_rds_cluster.test (expand) aws_rds_cluster.test (expand)]
2024-07-31T20:50:00.623+0900 [DEBUG] ReferenceTransformer: "aws_db_subnet_group.test (expand)" references: []
2024-07-31T20:50:00.623+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster_parameter_group.test16 (expand)" references: []
2024-07-31T20:50:00.623+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.db_endpoint (expand)" references: [aws_rds_cluster.test (expand)]
2024-07-31T20:50:00.623+0900 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.reference_test (expand)" references: [aws_ssm_parameter.db_endpoint (expand)]
2024-07-31T20:50:00.623+0900 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2024-07-31T20:50:00.624+0900 [DEBUG] ReferenceTransformer: "aws_rds_cluster.test (expand)" references: [aws_rds_cluster_parameter_group.test16 (expand) aws_db_subnet_group.test (expand)]
2024-07-31T20:50:00.624+0900 [DEBUG] ReferenceTransformer: "aws_db_parameter_group.test16 (expand)" references: []
2024-07-31T20:50:00.624+0900 [DEBUG] pruneUnusedNodes: aws_rds_cluster_instance.test (expand) is no longer needed, removing
2024-07-31T20:50:00.624+0900 [DEBUG] pruneUnusedNodes: aws_ssm_parameter.reference_test (expand) is no longer needed, removing
2024-07-31T20:50:00.624+0900 [DEBUG] pruneUnusedNodes: aws_ssm_parameter.db_endpoint (expand) is no longer needed, removing
2024-07-31T20:50:00.624+0900 [DEBUG] pruneUnusedNodes: aws_db_parameter_group.test16 (expand) is no longer needed, removing
2024-07-31T20:50:00.624+0900 [DEBUG] pruneUnusedNodes: aws_rds_cluster.test (expand) is no longer needed, removing
2024-07-31T20:50:00.624+0900 [DEBUG] pruneUnusedNodes: aws_db_subnet_group.test (expand) is no longer needed, removing
2024-07-31T20:50:00.624+0900 [DEBUG] pruneUnusedNodes: aws_rds_cluster_parameter_group.test16 (expand) is no longer needed, removing
2024-07-31T20:50:00.624+0900 [DEBUG] Starting graph walk: walkApply
2024-07-31T20:50:00.625+0900 [DEBUG] created provider logger: level=debug
2024-07-31T20:50:00.625+0900 [INFO]  provider: configuring client automatic mTLS
2024-07-31T20:50:00.632+0900 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5"]
2024-07-31T20:50:00.648+0900 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 pid=28767
2024-07-31T20:50:00.649+0900 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5
2024-07-31T20:50:01.030+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: configuring server automatic mTLS: timestamp="2024-07-31T20:50:01.030+0900"
2024-07-31T20:50:01.036+0900 [DEBUG] provider: using plugin: version=5
2024-07-31T20:50:01.036+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: plugin address: address=/var/folders/p_/7pjj_f0n49s0k2w28xc5l0vw0000gn/T/plugin3604514505 network=unix timestamp="2024-07-31T20:50:01.036+0900"
2024-07-31T20:50:01.099+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Configuring Terraform AWS Provider: @module=aws tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:147 timestamp="2024-07-31T20:50:01.099+0900"
2024-07-31T20:50:01.099+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Resolving credentials provider: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 tf_mux_provider="*schema.GRPCProviderServer" @module=aws.aws-base tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 timestamp="2024-07-31T20:50:01.099+0900"
2024-07-31T20:50:01.099+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Loading configuration: @module=aws.aws-base tf_mux_provider="*schema.GRPCProviderServer" tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 timestamp="2024-07-31T20:50:01.099+0900"
2024-07-31T20:50:01.099+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Retrieving credentials: tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 @module=aws.aws-base tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 timestamp="2024-07-31T20:50:01.099+0900"
2024-07-31T20:50:01.099+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: Retrieved credentials: @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:39 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider tf_aws.credentials_source="SharedConfigCredentials: /Users/star-yamamoto-373150/.aws/credentials" tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 timestamp="2024-07-31T20:50:01.099+0900"
2024-07-31T20:50:01.099+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Loading configuration: tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 @module=aws.aws-base tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 tf_rpc=ConfigureProvider timestamp="2024-07-31T20:50:01.099+0900"
2024-07-31T20:50:01.100+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Creating AWS SDK v1 session: tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:171 @module=aws tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 timestamp="2024-07-31T20:50:01.100+0900"
2024-07-31T20:50:01.100+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Retrieving AWS account details: @module=aws tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:186 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider timestamp="2024-07-31T20:50:01.100+0900"
2024-07-31T20:50:01.100+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: Retrieving caller identity from STS: @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 @module=aws.aws-base tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 tf_rpc=ConfigureProvider timestamp="2024-07-31T20:50:01.100+0900"
2024-07-31T20:50:01.100+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.url=https://sts.ap-northeast-1.amazonaws.com/ net.peer.name=sts.ap-northeast-1.amazonaws.com rpc.method=GetCallerIdentity tf_aws.signing_region=""
  http.request.body=
  | Action=GetCallerIdentity&Version=2011-06-15
   http.request.header.amz_sdk_invocation_id=cf5db536-bcbb-4c48-a573-acbbb97e2932 http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.x_amz_date=20240731T115001Z tf_rpc=ConfigureProvider http.request_content_length=43 rpc.service=STS tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 @module=aws.aws-base tf_aws.sdk=aws-sdk-go-v2 tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 aws.region=ap-northeast-1 http.method=POST http.request.header.content_type=application/x-www-form-urlencoded http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/sts/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/sts#1.30.3" rpc.system=aws-api timestamp="2024-07-31T20:50:01.100+0900"
2024-07-31T20:50:01.167+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: rpc.service=STS rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=05104f8c-3e24-0799-2600-03900092ab46
  http.response.body=
  | <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
  |   <GetCallerIdentityResult>
  |     <Arn>arn:aws:iam::134057437479:user/administrator</Arn>
  |     <UserId>AIDA*************YIHO</UserId>
  |     <Account>134057437479</Account>
  |   </GetCallerIdentityResult>
  |   <ResponseMetadata>
  |     <RequestId>9e46b067-da61-45fc-b53f-7a8750647709</RequestId>
  |   </ResponseMetadata>
  | </GetCallerIdentityResponse>
   http.response.header.date="Wed, 31 Jul 2024 11:50:05 GMT" http.response_content_length=410 rpc.method=GetCallerIdentity tf_aws.signing_region="" http.duration=66 http.response.header.content_type=text/xml aws.region=ap-northeast-1 @module=aws.aws-base http.response.header.x_amzn_requestid=9e46b067-da61-45fc-b53f-7a8750647709 http.status_code=200 tf_aws.sdk=aws-sdk-go-v2 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:47 timestamp="2024-07-31T20:50:01.167+0900"
2024-07-31T20:50:01.167+0900 [INFO]  provider.terraform-provider-aws_v5.60.0_x5: Retrieved caller identity from STS: tf_mux_provider="*schema.GRPCProviderServer" tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:39 @module=aws.aws-base tf_req_id=05104f8c-3e24-0799-2600-03900092ab46 tf_rpc=ConfigureProvider timestamp="2024-07-31T20:50:01.167+0900"
2024-07-31T20:50:01.170+0900 [INFO]  Starting apply for aws_rds_cluster_parameter_group.test15
2024-07-31T20:50:01.170+0900 [DEBUG] aws_rds_cluster_parameter_group.test15: applying the planned Delete change
2024-07-31T20:50:01.171+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: [DEBUG] Deleting RDS Cluster Parameter Group: test-aurora-postgresql15-cluster
2024-07-31T20:50:01.171+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: [DEBUG] Waiting for state to become: [success]
2024-07-31T20:50:01.171+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Request Sent: http.request.header.amz_sdk_invocation_id=69f295fd-55c4-4770-ba5a-84d5445e8cde rpc.system=aws-api http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.9.3 (+https://www.terraform.io) terraform-provider-aws/5.60.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.30.3 os/macos lang/go#1.22.5 md/GOOS#darwin md/GOARCH#arm64 api/rds#1.81.5" tf_aws.signing_region="" http.request.header.content_type=application/x-www-form-urlencoded http.request.header.amz_sdk_request="attempt=1; max=25" tf_rpc=ApplyResourceChange net.peer.name=rds.ap-northeast-1.amazonaws.com http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************ER6D/20240731/ap-northeast-1/rds/aws4_request, SignedHeaders=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date, Signature=*****" http.request_content_length=116
  http.request.body=
  | Action=DeleteDBClusterParameterGroup&DBClusterParameterGroupName=test-aurora-postgresql15-cluster&Version=2014-10-31
   tf_req_id=b9e9d338-4d8c-30d3-4050-5f8931f2b355 aws.region=ap-northeast-1 tf_aws.sdk=aws-sdk-go-v2 tf_provider_addr=registry.terraform.io/hashicorp/aws http.method=POST rpc.method=DeleteDBClusterParameterGroup http.url=https://rds.ap-northeast-1.amazonaws.com/ tf_mux_provider="*schema.GRPCProviderServer" tf_resource_type=aws_rds_cluster_parameter_group @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 @module=aws rpc.service=RDS http.request.header.x_amz_date=20240731T115001Z timestamp="2024-07-31T20:50:01.171+0900"
2024-07-31T20:50:01.279+0900 [DEBUG] provider.terraform-provider-aws_v5.60.0_x5: HTTP Response Received: http.response.header.date="Wed, 31 Jul 2024 11:50:04 GMT" aws.region=ap-northeast-1 rpc.method=DeleteDBClusterParameterGroup tf_aws.sdk=aws-sdk-go-v2 tf_aws.signing_region="" tf_provider_addr=registry.terraform.io/hashicorp/aws
  http.response.body=
  | <DeleteDBClusterParameterGroupResponse xmlns="http://rds.amazonaws.com/doc/2014-10-31/"><ResponseMetadata><RequestId>368f7299-190f-4f66-b256-14a9d50b633b</RequestId></ResponseMetadata></DeleteDBClusterParameterGroupResponse>
   http.response.header.content_type=text/xml http.response.header.strict_transport_security=max-age=31536000 tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.54/logging/tf_logger.go:45 @module=aws http.response.header.x_amzn_requestid=368f7299-190f-4f66-b256-14a9d50b633b http.status_code=200 rpc.service=RDS rpc.system=aws-api tf_mux_provider="*schema.GRPCProviderServer" tf_req_id=b9e9d338-4d8c-30d3-4050-5f8931f2b355 http.duration=107 tf_resource_type=aws_rds_cluster_parameter_group timestamp="2024-07-31T20:50:01.279+0900"
2024-07-31T20:50:01.285+0900 [DEBUG] State storage *statemgr.Filesystem declined to persist a state snapshot
2024-07-31T20:50:01.286+0900 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-07-31T20:50:01.289+0900 [INFO]  provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/aws/5.60.0/darwin_arm64/terraform-provider-aws_v5.60.0_x5 id=28767
2024-07-31T20:50:01.289+0900 [DEBUG] provider: plugin exited

Panic Output

No response

Important Factoids

No response

References

No response

Would you like to implement a fix?

None

github-actions[bot] commented 1 month ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

justinretzolk commented 1 month ago

Hey @yamazoon0207 👋 Thank you for taking the time to raise this! Can you provide debug logging (redacted as needed)? I'm not sure I follow what you're describing, and that may help clear things up.

yamazoon0207 commented 1 month ago

@justinretzolk 👋 I have uploaded the debug log.

yamazoon0207 commented 1 month ago
image
yamazoon0207 commented 1 month ago

This is a blog in Japanese, but the details are also described in this article.

https://blog.serverworks.co.jp/terraform-restore-aurora-cluster#%E7%95%99%E6%84%8F%E4%BA%8B%E9%A0%85

rajaie7 commented 1 month ago

We are also running into this with Terraform v1.5.2 and AWS Provider 5.60.0, but in our case we are seeing this error whenever we make a change to an existing Terraform aws_rds_cluster resource (so import isn't relevant for us).

The problem also shows up for enable_local_write_forwarding.

How to reproduce

  1. Create a resource "aws_rds_cluster" "abc" {
  2. Set engine to aurora-postgresql
  3. Don't set enable_global_write_forwarding
  4. terraform apply
  5. Add a new tag to the resource
  6. run 'terraform plan'
  7. We see
Terraform will perform the following actions:

  # aws_rds_cluster.airflow_datalake will be updated in-place
  ~ resource "aws_rds_cluster" "abc" {
      + enable_global_write_forwarding      = false
      + enable_local_write_forwarding       = false
        id                                  = "abc"
  1. Remove the tag you just added
  2. terraform plan
  3. The '*_write_forwarding' changes are gone

When I run aws rds describe-db-clusters \ --query '*[].{DBClusterIdentifier:DBClusterIdentifier,LocalWriteForwardingStatus:LocalWriteForwardingStatus}' to check the write forwarding status on our clusters, I see

    {
        "DBClusterIdentifier": "abc",
        "LocalWriteForwardingStatus": null
    },

The docs at https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html indicate that a value of null means Write forwarding isn't available for this DB cluster.

So it looks like Terraform is getting confused since it keeps trying to set a "False" value for a resource which only supports null in its current configuration?

rajaie7 commented 1 month ago

I think the issue is that both those parameters are defined as Booleans with a default value of False

even though they can actually be set to 'null'. So Terraform keeps trying to set a value of False on a resource that doesn't support it