mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
* implement module testing via TFC * ready for review * fix static checks * licence headers
15 lines
231 B
HCL
15 lines
231 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
default = "Hello, world!"
|
|
}
|
|
|
|
data "null_data_source" "values" {
|
|
inputs = {
|
|
data = var.input
|
|
}
|
|
}
|
|
|
|
output "input" {
|
|
value = data.null_data_source.values.outputs["data"]
|
|
}
|