mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-04 04:40:29 -06:00
12 lines
170 B
HCL
12 lines
170 B
HCL
variable "foo" {
|
|
default = "2"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
count = "${var.foo}"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${aws_instance.foo.count}"
|
|
}
|