Files
opentf/internal/tofu/testdata/import-id-reference/main.tf
Christian Mesh c996be8d7d Allow known references in import blocks (#1105)
Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
2024-01-12 07:23:25 -05:00

14 lines
148 B
HCL

variable "the_id" {
default = "123"
}
module "refmod" {
source = "./mod"
}
import {
to = module.refmod.aws_instance.foo
id = var.the_id
}