Resource: aws_rds_cluster_parameter_group

Provides an RDS DB cluster parameter group resource. Documentation of the available parameters for various Aurora engines can be found at:

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

This resource supports the following arguments:

Parameter blocks support the following:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import RDS Cluster Parameter Groups using the name. For example:

import {
  to = aws_rds_cluster_parameter_group.cluster_pg
  id = "production-pg-1"
}

Using terraform import, import RDS Cluster Parameter Groups using the name. For example:

% terraform import aws_rds_cluster_parameter_group.cluster_pg production-pg-1