mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06: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)
|
|
}
|