mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-22 19:00:35 -04:00
13 lines
146 B
HCL
13 lines
146 B
HCL
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "managed" {
|
|
id = var.id
|
|
value = var.value
|
|
}
|