9 lines
219 B
Terraform
9 lines
219 B
Terraform
|
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]
|
||
|
}
|