mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-08 06:02:05 -04:00
12 lines
129 B
HCL
12 lines
129 B
HCL
variable "the_id" {
|
|
default = "123"
|
|
}
|
|
|
|
import {
|
|
to = aws_instance.foo
|
|
id = var.the_id
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
}
|