mirror of
https://github.com/opentofu/opentofu.git
synced 2026-03-12 05:35:03 -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
|
|
}
|