Skip to content

Commit

Permalink
Merge pull request #5711 from hashicorp/catsby-rds-docs-patch-1
Browse files Browse the repository at this point in the history
provider/aws: Update RDS Cluster Instance Docs
  • Loading branch information
catsby committed Mar 18, 2016
2 parents 31a452a + a8a5ace commit 753e7a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For more information on Amazon Aurora, see [Aurora on Amazon RDS][2] in the Amaz
```
resource "aws_rds_cluster_instance" "cluster_instances" {
count = 2
identifier = "aurora-cluster-demo"
identifier = "aurora-cluster-demo-${count.index}"
cluster_identifier = "${aws_rds_cluster.default.id}"
instance_class = "db.r3.large"
}
Expand All @@ -36,7 +36,7 @@ resource "aws_rds_cluster" "default" {
availability_zones = ["us-west-2a","us-west-2b","us-west-2c"]
database_name = "mydb"
master_username = "foo"
master_password = "bar"
master_password = "barbut8chars"
}
```

Expand Down

0 comments on commit 753e7a2

Please sign in to comment.