mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-23 17:09:31 -05:00
12 lines
146 B
HCL
12 lines
146 B
HCL
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
id = var.id
|
|
value = var.value
|
|
} |