Files
opentf/internal/tofu/testdata/import-id-variable/main.tf
2023-09-20 15:16:53 +03:00

12 lines
129 B
HCL

variable "the_id" {
default = "123"
}
import {
to = aws_instance.foo
id = var.the_id
}
resource "aws_instance" "foo" {
}