github.com/pmcatominey/terraform@v0.7.0-rc2.0.20160708105029-1401a52a5cc5/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  	parameter {
    18  	  name = "require_ssl"
    19  	  value = "true"
    20  	}
    21  	parameter {
    22  	  name = "query_group"
    23  	  value = "example"
    24  	}
    25  	parameter{
    26  	  name = "enable_user_activity_logging"
    27  	  value = "true"
    28  	}
    29  }
    30  ```
    31  
    32  ## Argument Reference
    33  
    34  The following arguments are supported:
    35  
    36  * `name` - (Required) The name of the Redshift parameter group.
    37  * `family` - (Required) The family of the Redshift parameter group.
    38  * `description` - (Optional) The description of the Redshift parameter group. Defaults to "Managed by Terraform".
    39  * `parameter` - (Optional) A list of Redshift parameters to apply.
    40  
    41  Parameter blocks support the following:
    42  
    43  * `name` - (Required) The name of the Redshift parameter.
    44  * `value` - (Required) The value of the Redshift parameter.
    45  
    46  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)
    47  
    48  ## Attributes Reference
    49  
    50  The following attributes are exported:
    51  
    52  * `id` - The Redshift parameter group name.