mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-31 11:17:25 -06:00
9 lines
157 B
HCL
9 lines
157 B
HCL
variable "foo" {
|
|
default = "bar"
|
|
description = "bar"
|
|
}
|
|
|
|
resource "aws_instance" "db" {
|
|
security_groups = "${aws_security_group.firewall.*.id}"
|
|
}
|