terraform-library/output.tf

9 lines
219 B
HCL

output "deployment" {
value = kubernetes_deployment_v1.deployment
}
output "record" {
value = format("Access to the application at https://%s", local.service_hostname)
depends_on = [kubernetes_manifest.record]
}