From 95270bf68df26dd4d1daf3c6f8ce512222f0d50e Mon Sep 17 00:00:00 2001 From: Nick HS Date: Fri, 3 Apr 2015 15:16:13 -0400 Subject: [PATCH 1/2] Change example name in aws_db_paramater_group res AWS DB Paramater Groups cannot contain underscores, see http://docs.aws.amazon.com/AmazonRDS/latest/CommandLineReference/CLIReference-cmd-CreateDBParameterGroup.html --- .../docs/providers/aws/r/db_parameter_group.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/providers/aws/r/db_parameter_group.html.markdown b/website/source/docs/providers/aws/r/db_parameter_group.html.markdown index defb698eb..41e2f7b86 100644 --- a/website/source/docs/providers/aws/r/db_parameter_group.html.markdown +++ b/website/source/docs/providers/aws/r/db_parameter_group.html.markdown @@ -12,7 +12,7 @@ Provides an RDS DB parameter group resource. ``` resource "aws_db_parameter_group" "default" { - name = "rds_pg" + name = "rds-pg" family = "mysql5.6" description = "RDS default parameter group" @@ -20,7 +20,7 @@ resource "aws_db_parameter_group" "default" { name = "character_set_server" value = "utf8" } - + parameter { name = "character_set_client" value = "utf8" From 39598cf1faf6f345d4ea81a69c4d06301e702dce Mon Sep 17 00:00:00 2001 From: Nick HS Date: Fri, 3 Apr 2015 15:19:41 -0400 Subject: [PATCH 2/2] Rename False to false in aws_db_instance False isn't allowed in hcl, just fixing a typo --- .../source/docs/providers/aws/r/db_instance.html.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/source/docs/providers/aws/r/db_instance.html.markdown b/website/source/docs/providers/aws/r/db_instance.html.markdown index 6b3b97552..61b5b6dcf 100644 --- a/website/source/docs/providers/aws/r/db_instance.html.markdown +++ b/website/source/docs/providers/aws/r/db_instance.html.markdown @@ -58,13 +58,13 @@ The following arguments are supported: * `publicly_accessible` - (Optional) Bool to control if instance is publicly accessible. * `vpc_security_group_ids` - (Optional) List of VPC security groups to associate. * `security_group_names` - (Optional/Deprecated) List of DB Security Groups to associate. - Only used for [DB Instances on the _EC2-Classic_ Platform](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html#USER_VPC.FindDefaultVPC). + Only used for [DB Instances on the _EC2-Classic_ Platform](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html#USER_VPC.FindDefaultVPC). * `db_subnet_group_name` - (Optional) Name of DB subnet group * `parameter_group_name` - (Optional) Name of the DB parameter group to associate. -* `storage_encrypted` - (Optional) Specifies whether the DB instance is encrypted. The Default is `false` if not specified. -* `apply_immediately` - (Optional) Specifies whether any database modifications +* `storage_encrypted` - (Optional) Specifies whether the DB instance is encrypted. The default is `false` if not specified. +* `apply_immediately` - (Optional) Specifies whether any database modifications are applied immediately, or during the next maintenance window. Default is - `False`. See [Amazon RDS Documentation for more for more information.](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html) + `false`. See [Amazon RDS Documentation for more for more information.](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html) ## Attributes Reference