Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ resource "google_compute_global_forwarding_rule" "https" {
# SSL Policy for the load balancer
resource "google_compute_ssl_policy" "tls12-ssl-policy" {
name = "${var.project_id}-tls12-ssl-policy"
profile = "MODERN" # Use MODERN for strong security settings.
min_tls_version = "TLS_1_2" # Only allow TLS 1.2 and above.
profile = "RESTRICTED" # Use MODERN for strong security settings.
min_tls_version = "TLS_1_2" # Only allow TLS 1.2 and above.

description = "SSL policy to enforce TLS 1.2 and disable TLS 1.0 and 1.1"
}
Expand Down