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
Can you please implement/add the ssl_policy for the net-lb-app-int as it is in the net-lb-app-int-cross-region module?
Current google_compute_region_target_http_proxy for the net-lb-app-int:
resource "google_compute_region_target_http_proxy" "default" { count = var.protocol == "HTTPS" ? 0 : 1 project = var.project_id region = var.region name = var.name description = var.description url_map = google_compute_region_url_map.default.id }
Current google_compute_region_target_http_proxy for the net-lb-app-int-cross-region:
resource "google_compute_target_https_proxy" "default" { count = var.protocol == "HTTPS" ? 1 : 0 project = var.project_id name = var.name description = var.description certificate_manager_certificates = var.https_proxy_config.certificate_manager_certificates quic_override = var.https_proxy_config.quic_override ssl_policy = var.https_proxy_config.ssl_policy url_map = google_compute_url_map.default.id }
The text was updated successfully, but these errors were encountered:
@krissQ-Q can you check it #2393 works for your use case?
Sorry, something went wrong.
Thanks a lot. Our test was successful.
Thanks for confirming!
hello, how i can now specify ssl policy using net-lb-app-int module?
ludoo
Successfully merging a pull request may close this issue.
Describe the request
Can you please implement/add the ssl_policy for the net-lb-app-int as it is in the net-lb-app-int-cross-region module?
Current google_compute_region_target_http_proxy for the net-lb-app-int:
resource "google_compute_region_target_http_proxy" "default" {
count = var.protocol == "HTTPS" ? 0 : 1
project = var.project_id
region = var.region
name = var.name
description = var.description
url_map = google_compute_region_url_map.default.id
}
Current google_compute_region_target_http_proxy for the net-lb-app-int-cross-region:
resource "google_compute_target_https_proxy" "default" {
count = var.protocol == "HTTPS" ? 1 : 0
project = var.project_id
name = var.name
description = var.description
certificate_manager_certificates = var.https_proxy_config.certificate_manager_certificates
quic_override = var.https_proxy_config.quic_override
ssl_policy = var.https_proxy_config.ssl_policy
url_map = google_compute_url_map.default.id
}
The text was updated successfully, but these errors were encountered: