Skip to content

Adding ssl_policy to the net-lb-app-int as it is net-lb-app-int-cross-region #2391

New issue

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

Closed
krissQ-Q opened this issue Jun 27, 2024 · 4 comments · Fixed by #2393
Closed

Adding ssl_policy to the net-lb-app-int as it is net-lb-app-int-cross-region #2391

krissQ-Q opened this issue Jun 27, 2024 · 4 comments · Fixed by #2393
Assignees
Labels
enhancement New feature or request

Comments

@krissQ-Q
Copy link

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
}

@ludoo
Copy link
Collaborator

ludoo commented Jun 27, 2024

@krissQ-Q can you check it #2393 works for your use case?

@ludoo ludoo self-assigned this Jun 27, 2024
@ludoo ludoo added the enhancement New feature or request label Jun 27, 2024
@krissQ-Q
Copy link
Author

Thanks a lot. Our test was successful.

@ludoo
Copy link
Collaborator

ludoo commented Jun 28, 2024

Thanks for confirming!

@afrasccella
Copy link

hello, how i can now specify ssl policy using net-lb-app-int module?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants