mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
12 lines
161 B
HCL
12 lines
161 B
HCL
variable "foo" {
|
|
default = "2"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
count = "${var.foo}"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = length(aws_instance.foo)
|
|
}
|