Files
opentf/website/source/docs
Mike Fiedler 10c96afa9b Update aws_db_instance db_subnet_group_name
When launching a new RDS instance in a VPC-default AWS account, trying to control which VPC the new RDS instance lands in is not apparent from the parameters available.
The following works:
```
resource "aws_db_subnet_group" "foo" {
  name = "foo"
  description = "DB Subnet for foo"
  subnet_ids = ["${aws_subnet.foo_1a.id}", "${aws_subnet.foo_1b.id}"]
}

resource "aws_db_instance" "bar" {
...
  db_subnet_group_name   = "${aws_db_subnet_group.foo.name}"
...
}
```

Hopefully this doc update will help others
2015-09-08 09:10:54 -04:00
..
2015-05-05 21:58:48 -05:00
2015-07-19 14:15:56 -04:00
2015-07-09 10:13:54 -04:00