Fix: Allow function calls in test variable blocks (#2947) (#2990)

This commit is contained in:
kasulani
2025-07-08 14:26:25 +02:00
committed by GitHub
parent 595eedbfc6
commit 1af1512705
5 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
variable "input" {
type = string
}
variable "joined" {
type = string
}
output "input_output" {
value = var.input
}
output "joined_output" {
value = var.joined
}
resource "test_resource" "dummy" {
value = "placeholder"
}