mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 18:56:57 -05:00
19 lines
233 B
HCL
19 lines
233 B
HCL
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"
|
|
} |