mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
13 lines
175 B
HCL
13 lines
175 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "bar"
|
|
count = 3
|
|
}
|
|
|
|
output "foo_num" {
|
|
value = "${aws_instance.bar.0.foo}"
|
|
}
|