7 lines
94 B
HCL
7 lines
94 B
HCL
variable "foo" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "foo"
|
|
count = "${var.foo}"
|
|
}
|