Skip to content

Commit

Permalink
add_ssl_policy_notls1_for_lb
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevesibilia committed Sep 18, 2024
1 parent 824c425 commit 56df61a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Terraform Module Template

This project can be used as a template for the initial stub of a Terraform
module.
This project is intended to gather common elements for GCP infrastructures in order to centralize security configurations and best practices.

We suggest following Terraform best practices as described in https://www.terraform-best-practices.com/code-structure.

Expand Down
5 changes: 5 additions & 0 deletions ssl.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "google_compute_ssl_policy" "modern_tls_1_2" {
name = "modern-ssl-policy"
profile = "MODERN"
min_tls_version = "TLS_1_2"
}

0 comments on commit 56df61a

Please sign in to comment.