Files
oam/terraform/airgapped terraform enterprise on azure/outputs.tf
2023-01-19 02:16:06 +01:00

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
}