mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 18:56:57 -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
|
|
} |