-
Notifications
You must be signed in to change notification settings - Fork 24
/
outputs.tf
24 lines (20 loc) · 936 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
output "ip_address" {
value = google_compute_global_address.default.address
description = "The IPv4 address of the load balancer"
}
output "cos_image_id" {
value = data.google_compute_image.cos.image_id
description = "The unique identifier of the Container-Optimized OS image used to create the Compute Engine instance."
}
output "managed_ssl_certificate_certificate_id" {
value = google_compute_managed_ssl_certificate.default.certificate_id
description = "The unique identifier of the Google Managed SSL certificate"
}
output "managed_ssl_certificate_expire_time" {
value = google_compute_managed_ssl_certificate.default.expire_time
description = "Expire time of the Google Managed SSL certificate"
}
output "iap_backend_service_name" {
value = var.iap != null ? google_compute_backend_service.iap[0].name : null
description = "Name of the optional IAP-enabled backend service"
}