mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
17 lines
373 B
HCL
17 lines
373 B
HCL
output "replicated_config_file" {
|
|
value = {
|
|
contents = local.replicated_config_file_contents
|
|
location = var.replicated_config_file_location
|
|
}
|
|
}
|
|
output "tfe_config_file" {
|
|
value = {
|
|
contents = local.tfe_config_file_contents
|
|
location = var.tfe_config_file_location
|
|
}
|
|
}
|
|
|
|
output "cloudinit_config" {
|
|
value = data.cloudinit_config.user_data.rendered
|
|
}
|