mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 04:10:28 -06:00
7 lines
94 B
HCL
7 lines
94 B
HCL
variable "foo" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "foo"
|
|
count = "${var.foo}"
|
|
}
|