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
This commit is contained in:
jonatanblue 2017-03-16 21:10:24 +00:00 committed by Radek Simko
parent 2d0148083a
commit 62098886be
1 changed files with 2 additions and 1 deletions

View File

@ -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.