mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-09 08:33:23 -04:00
19 lines
233 B
Terraform
19 lines
233 B
Terraform
|
|
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"
|
||
|
|
}
|