Files
opentf/website/source/docs/providers/aws/r/redshift_parameter_group.html.markdown
George Christou 61277c0dbd website/docs: Run terraform fmt on code examples (#12075)
* docs/vsphere: Fix code block

* docs: Convert `...` to `# ...` to allow `terraform fmt`ing

* docs: Trim trailing whitespace

* docs: First-pass run of `terraform fmt` on code examples
2017-02-19 00:48:50 +02:00

1.5 KiB

layout, page_title, sidebar_current
layout page_title sidebar_current
aws AWS: aws_redshift_parameter_group docs-aws-resource-redshift-parameter-group

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

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