mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
14 lines
165 B
HCL
14 lines
165 B
HCL
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "managed" {
|
|
provider = setup
|
|
id = var.id
|
|
value = var.value
|
|
}
|