mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
11 lines
161 B
HCL
11 lines
161 B
HCL
variable "foo" {
|
|
default = "2"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
count = "${var.foo}"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = length(aws_instance.foo)
|
|
}
|