opentofu/config/test-fixtures/dir-merge/one.tf
Mitchell Hashimoto 038cca291e config: HCL loader
2014-08-11 09:58:53 -07:00

9 lines
157 B
HCL

variable "foo" {
default = "bar"
description = "bar"
}
resource "aws_instance" "db" {
security_groups = "${aws_security_group.firewall.*.id}"
}