github.com/leeprovoost/terraform@v0.6.10-0.20160119085442-96f3f76118e7/website/source/docs/providers/aws/r/redshift_parameter_group.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_redshift_parameter_group" 4 sidebar_current: "docs-aws-resource-redshift-parameter-group" 5 --- 6 7 # aws\_redshift\_parameter\_group 8 9 Provides a Redshift Cluster parameter group resource. 10 11 ## Example Usage 12 13 ``` 14 resource "aws_redshift_parameter_group" "bar" { 15 name = "parameter-group-test-terraform" 16 family = "redshift-1.0" 17 description = "Test parameter group for terraform" 18 parameter { 19 name = "require_ssl" 20 value = "true" 21 } 22 parameter { 23 name = "query_group" 24 value = "example" 25 } 26 parameter{ 27 name = "enable_user_activity_logging" 28 value = "true" 29 } 30 } 31 ``` 32 33 ## Argument Reference 34 35 The following arguments are supported: 36 37 * `name` - (Required) The name of the Redshift parameter group. 38 * `family` - (Required) The family of the Redshift parameter group. 39 * `description` - (Required) The description of the Redshift parameter group. 40 * `parameter` - (Optional) A list of Redshift parameters to apply. 41 42 Parameter blocks support the following: 43 44 * `name` - (Required) The name of the Redshift parameter. 45 * `value` - (Required) The value of the Redshift parameter. 46 47 You can read more about the parameters that Redshift supports in the [documentation](http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html) 48 49 ## Attributes Reference 50 51 The following attributes are exported: 52 53 * `id` - The Redshift parameter group name.