On this page
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: * Aurora MySQL Parameters * Aurora PostgreSQL Parameters
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:
name
- (Optional, Forces new resource) The name of the DB cluster parameter group. If omitted, Terraform will assign a random, unique name.name_prefix
- (Optional, Forces new resource) Creates a unique name beginning with the specified prefix. Conflicts withname
.family
- (Required) The family of the DB cluster parameter group.description
- (Optional) The description of the DB cluster parameter group. Defaults to "Managed by Terraform".parameter
- (Optional) A list of DB parameters to apply. Note that parameters may differ from a family to an other. Full list of all parameters can be discovered viaaws rds describe-db-cluster-parameters
after initial creation of the group.tags
- (Optional) A mapping of tags to assign to the resource.
Parameter blocks support the following:
name
- (Required) The name of the DB parameter.value
- (Required) The value of the DB parameter.apply_method
- (Optional) "immediate" (default), or "pending-reboot". Some engines can't apply some parameters without a reboot, and you will need to specify "pending-reboot" here.
Attributes Reference
In addition to all arguments above, 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
© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/rds_cluster_parameter_group.html