mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-09 08:33:23 -04:00
13 lines
165 B
HCL
13 lines
165 B
HCL
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "managed" {
|
|
provider = setup
|
|
id = var.id
|
|
value = var.value
|
|
}
|