providers/aws: add description to test

cc/ @buth

Looks like the schema was correctly defining description as required,
added it to the tests and it's passing now.
This commit is contained in:
Jack Pearkes 2014-09-16 09:44:32 -04:00
parent f28c3d50df
commit dd434fb71b
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ resource "aws_subnet" "bar" {
resource "aws_db_subnet_group" "foo" {
name = "foo"
description = "foo description"
subnet_ids = ["${aws_subnet.foo.id}", "${aws_subnet.bar.id}"]
}
`