mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
7 lines
108 B
Terraform
7 lines
108 B
Terraform
|
provider "aws" {}
|
||
|
|
||
|
resource "aws_instance" "test" {
|
||
|
foo = "${format("foo%d", count.index)}"
|
||
|
count = 2
|
||
|
}
|