mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-08 22:01:04 -04:00
12 lines
173 B
HCL
12 lines
173 B
HCL
variable "val" {
|
|
}
|
|
|
|
output "val" {
|
|
value = "${var.val}_${test_resource.resource.id}"
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
id = "id-${var.val}"
|
|
value = var.val
|
|
}
|