We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the request
Please add Certificate Manager certificates support for the Application Load Balancer modules, as it is in General Availability. https://cloud.google.com/load-balancing/docs/release-notes#March_12_2024
resource "google_compute_region_target_https_proxy" "default" { count = var.protocol == "HTTPS" ? 1 : 0 project = var.project_id region = var.region name = var.name description = var.description ssl_certificates = local.proxy_ssl_certificates
Add support for Certificate Manager Certificates here
ssl_policy = var.https_proxy_config.ssl_policy url_map = google_compute_region_url_map.default.id }
Thanks
The text was updated successfully, but these errors were encountered:
@apichick did you merge it in the end?
Sorry, something went wrong.
Added here #2415
Successfully merging a pull request may close this issue.
Describe the request
Please add Certificate Manager certificates support for the Application Load Balancer modules, as it is in General Availability.
https://cloud.google.com/load-balancing/docs/release-notes#March_12_2024
resource "google_compute_region_target_https_proxy" "default" {
count = var.protocol == "HTTPS" ? 1 : 0
project = var.project_id
region = var.region
name = var.name
description = var.description
ssl_certificates = local.proxy_ssl_certificates
ssl_policy = var.https_proxy_config.ssl_policy
url_map = google_compute_region_url_map.default.id
}
Thanks
The text was updated successfully, but these errors were encountered: