terraform/config/testdata/dir-merge/one.tf

9 lines
157 B
Terraform
Raw Normal View History

2014-07-28 19:43:00 +02:00
variable "foo" {
2014-08-05 07:04:48 +02:00
default = "bar"
description = "bar"
2014-07-28 19:43:00 +02:00
}
resource "aws_instance" "db" {
security_groups = "${aws_security_group.firewall.*.id}"
}