Skip to content
Snippets Groups Projects
Unverified Commit 958bca88 authored by Mathieu Parent's avatar Mathieu Parent Committed by GitHub
Browse files

terraform/gcp: Do not create unused subnetworks and Upgrade to latest google provider (#8497)

* terraform/gcp: Do not create unused subnetworks

By default terraform creates a subnetwork in each 39 regions

* terraform/gcp: Upgrade to latest google provider

... where "one of source_tags, source_ranges, or source_service_accounts must be defined"
parent eacd55fb
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.48"
version = "~> 4.0"
}
}
}
......
......@@ -5,6 +5,8 @@
resource "google_compute_network" "main" {
name = "${var.prefix}-network"
auto_create_subnetworks = false
}
resource "google_compute_subnetwork" "main" {
......@@ -20,6 +22,8 @@ resource "google_compute_firewall" "deny_all" {
priority = 1000
source_ranges = ["0.0.0.0/0"]
deny {
protocol = "all"
}
......@@ -86,6 +90,8 @@ resource "google_compute_firewall" "ingress_http" {
priority = 100
source_ranges = ["0.0.0.0/0"]
allow {
protocol = "tcp"
ports = ["80"]
......@@ -98,6 +104,8 @@ resource "google_compute_firewall" "ingress_https" {
priority = 100
source_ranges = ["0.0.0.0/0"]
allow {
protocol = "tcp"
ports = ["443"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment