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