» Resource: aws_redshift_parameter_group

Provides a Redshift Cluster parameter group resource.

» Example Usage

resource "aws_redshift_parameter_group" "bar" {
  name   = "parameter-group-test-terraform"
  family = "redshift-1.0"

  parameter {
    name  = "require_ssl"
    value = "true"
  }

  parameter {
    name  = "query_group"
    value = "example"
  }

  parameter {
    name  = "enable_user_activity_logging"
    value = "true"
  }
}

» Argument Reference

The following arguments are supported:

  • name - (Required) The name of the Redshift parameter group.
  • family - (Required) The family of the Redshift parameter group.
  • description - (Optional) The description of the Redshift parameter group. Defaults to "Managed by Terraform".
  • parameter - (Optional) A list of Redshift parameters to apply.

Parameter blocks support the following:

  • name - (Required) The name of the Redshift parameter.
  • value - (Required) The value of the Redshift parameter.

You can read more about the parameters that Redshift supports in the documentation

» Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • id - The Redshift parameter group name.

» Import

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

$ terraform import aws_redshift_parameter_group.paramgroup1 parameter-group-test-terraform