FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_rds_cluster_parameter_group

Provides an RDS DB cluster parameter group resource.

Example Usage

resource "aws_rds_cluster_parameter_group" "default" {
    name = "rds-cluster-pg"
    family = "aurora5.6"
    description = "RDS default cluster parameter group"

    parameter {
      name = "character_set_server"
      value = "utf8"
    }

    parameter {
      name = "character_set_client"
      value = "utf8"
    }
}

Argument Reference

The following arguments are supported:

Parameter blocks support the following:

Attributes Reference

The following attributes are exported:

Import

RDS Cluster Parameter Groups can be imported using the name, e.g.

$ terraform import aws_rds_cluster_parameter_group.cluster_pg production-pg-1

See the source of this document at Terraform.io