github.com/jrasell/terraform@v0.6.17-0.20160523115548-2652f5232949/website/source/docs/providers/aws/r/rds_cluster_parameter_group.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: aws_rds_cluster_parameter_group"
     4  sidebar_current: "docs-aws-resource-rds-cluster-parameter-group"
     5  ---
     6  
     7  # aws\_rds\_cluster\_parameter\_group
     8  
     9  Provides an RDS DB cluster parameter group resource.
    10  
    11  ## Example Usage
    12  
    13  ```
    14  resource "aws_rds_cluster_parameter_group" "default" {
    15      name = "rds-cluster-pg"
    16      family = "aurora5.6"
    17      description = "RDS default cluster parameter group"
    18  
    19      parameter {
    20        name = "character_set_server"
    21        value = "utf8"
    22      }
    23  
    24      parameter {
    25        name = "character_set_client"
    26        value = "utf8"
    27      }
    28  }
    29  ```
    30  
    31  ## Argument Reference
    32  
    33  The following arguments are supported:
    34  
    35  * `name` - (Required) The name of the DB cluster parameter group.
    36  * `family` - (Required) The family of the DB cluster parameter group.
    37  * `description` - (Required) The description of the DB cluster parameter group.
    38  * `parameter` - (Optional) A list of DB parameters to apply.
    39  * `tags` - (Optional) A mapping of tags to assign to the resource.
    40  
    41  Parameter blocks support the following:
    42  
    43  * `name` - (Required) The name of the DB parameter.
    44  * `value` - (Required) The value of the DB parameter.
    45  * `apply_method` - (Optional) "immediate" (default), or "pending-reboot". Some
    46      engines can't apply some parameters without a reboot, and you will need to
    47      specify "pending-reboot" here.
    48  
    49  ## Attributes Reference
    50  
    51  The following attributes are exported:
    52  
    53  * `id` - The db cluster parameter group name.
    54  * `arn` - The ARN of the db cluster parameter group.
    55