mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-14 02:32:39 -06:00
15 lines
203 B
HCL
15 lines
203 B
HCL
resource "test_instance" "foo" {
|
|
}
|
|
|
|
output "foo_id" {
|
|
value = "${test_instance.foo.id}"
|
|
}
|
|
|
|
resource "test_instance" "bar" {
|
|
count = 3
|
|
}
|
|
|
|
output "bar_count" {
|
|
value = "${test_instance.bar.count}"
|
|
}
|