mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-11 15:00:46 -04:00
14 lines
148 B
HCL
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
|
|
}
|
|
|