From 62098886beafc14a29ce4b50bc20df4b472316df Mon Sep 17 00:00:00 2001 From: jonatanblue Date: Thu, 16 Mar 2017 21:10:24 +0000 Subject: [PATCH] add note about default storage for aws_db_instance (#10513) * fixed broken link * update one more link * explicitly define map and change ami to trusty * remove map definition * added note about default storage type for aws_db_instance * added note about default storage type for aws_db_instance * revert changes to conform with master --- website/source/docs/providers/aws/r/db_instance.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 eafba7417..cc957a9ea 100644 --- a/website/source/docs/providers/aws/r/db_instance.html.markdown +++ b/website/source/docs/providers/aws/r/db_instance.html.markdown @@ -31,6 +31,7 @@ for more information. ``` resource "aws_db_instance" "default" { allocated_storage = 10 + storage_type = "gp2" engine = "mysql" engine_version = "5.6.17" instance_class = "db.t1.micro" @@ -56,7 +57,7 @@ The following arguments are supported: * `instance_class` - (Required) The instance type of the RDS instance. * `storage_type` - (Optional) One of "standard" (magnetic), "gp2" (general purpose SSD), or "io1" (provisioned IOPS SSD). The default is "io1" if - `iops` is specified, "standard" if not. + `iops` is specified, "standard" if not. Note that this behaviour is different from the AWS web console, where the default is "gp2". * `final_snapshot_identifier` - (Optional) The name of your final DB snapshot when this DB instance is deleted. If omitted, no final snapshot will be made.