Fix typo in aws_db_instance example

This commit is contained in:
balser 2014-10-27 17:48:03 -04:00
parent 8788d3c25e
commit e915807efe
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ resource "aws_db_instance" "default" {
username = "foo"
password = "bar"
security_group_names = ["${aws_db_security_group.bar.name}"]
subnet_group_name = "my_database_subnet_group"
db_subnet_group_name = "my_database_subnet_group"
}
```