mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 22:02:25 -04:00
11 lines
191 B
HCL
11 lines
191 B
HCL
resource "template_instance" "example" {
|
|
compute_value = "template text"
|
|
compute = "value"
|
|
}
|
|
|
|
output "base_config" {
|
|
value = {
|
|
base_template = template_instance.example.value
|
|
}
|
|
}
|