fix(portal): Use RESTRICTED SSL policy to remove weak cipher suites (#5358)

This commit is contained in:
Andrew Dryga
2024-06-13 11:31:47 -06:00
committed by GitHub
parent 2294391d22
commit fa15e1568f

View File

@@ -271,7 +271,7 @@ resource "google_compute_ssl_policy" "application" {
name = local.application_name
min_tls_version = "TLS_1_2"
profile = "MODERN"
profile = "RESTRICTED"
depends_on = [
google_project_service.compute,