mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-14 17:44:26 -06:00
12 lines
177 B
HCL
12 lines
177 B
HCL
resource "aws_instance" "foo" {
|
|
}
|
|
|
|
output "no_count_in_output" {
|
|
value = "${count.index}"
|
|
}
|
|
|
|
module "no_count_in_module" {
|
|
source = "./child"
|
|
somevar = "${count.index}"
|
|
}
|