github.com/leeprovoost/terraform@v0.6.10-0.20160119085442-96f3f76118e7/website/source/docs/providers/aws/r/db_parameter_group.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_db_parameter_group" 4 sidebar_current: "docs-aws-resource-db-parameter-group" 5 --- 6 7 # aws\_db\_parameter\_group 8 9 Provides an RDS DB parameter group resource. 10 11 ## Example Usage 12 13 ``` 14 resource "aws_db_parameter_group" "default" { 15 name = "rds-pg" 16 family = "mysql5.6" 17 description = "RDS default 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 parameter group. 36 * `family` - (Required) The family of the DB parameter group. 37 * `description` - (Required) The description of the DB 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 parameter group name. 54 * `arn` - The ARN of the db parameter group.