mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-23 14:02:02 -05:00
7 lines
94 B
HCL
7 lines
94 B
HCL
variable "foo" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "foo"
|
|
count = "${var.foo}"
|
|
}
|