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:
parent
f28c3d50df
commit
dd434fb71b
|
@ -107,6 +107,7 @@ resource "aws_subnet" "bar" {
|
||||||
|
|
||||||
resource "aws_db_subnet_group" "foo" {
|
resource "aws_db_subnet_group" "foo" {
|
||||||
name = "foo"
|
name = "foo"
|
||||||
|
description = "foo description"
|
||||||
subnet_ids = ["${aws_subnet.foo.id}", "${aws_subnet.bar.id}"]
|
subnet_ids = ["${aws_subnet.foo.id}", "${aws_subnet.bar.id}"]
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
Loading…
Reference in New Issue