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