mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
19
internal/command/testdata/test/function_call_in_variables/main.tf
vendored
Normal file
19
internal/command/testdata/test/function_call_in_variables/main.tf
vendored
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user