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