mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-28 05:00:26 -04:00
also removed the notion of tags from the redshift security group and parameter group documentation until that has been implemented Redshift Cluster CRUD and acceptance tests Removing the Acceptance test for the Cluster Updates. You cannot delete a cluster immediately after performing an operation on it. We would need to add a lot of retry logic to the system to get this test to work Adding some schema validation for RedShift cluster Adding the last of the pieces of a first draft of the Redshift work - this is the documentation
1.4 KiB
1.4 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"
description = "Test parameter group for terraform"
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- (Required) The description of the Redshift parameter group.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.