terraform/config/test-fixtures/dir-merge/one.tf

9 lines
159 B
Terraform
Raw Normal View History

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