fix
This commit is contained in:
parent
872ad86a53
commit
5bc65ab504
@ -24,8 +24,8 @@ resource "google_compute_subnetwork" "db" {
|
||||
region = var.region
|
||||
}
|
||||
|
||||
resource "google_compute_firewall" "allowHttpHttps" {
|
||||
name = "allowHttpHttps"
|
||||
resource "google_compute_firewall" "allowhttphttps" {
|
||||
name = "allow-http-https"
|
||||
network = google_compute_network.vpc.id
|
||||
|
||||
allow {
|
||||
@ -37,8 +37,8 @@ resource "google_compute_firewall" "allowHttpHttps" {
|
||||
target_tags = ["web"]
|
||||
}
|
||||
|
||||
resource "google_compute_firewall" "allowSsh" {
|
||||
name = "allowSsh"
|
||||
resource "google_compute_firewall" "allowssh" {
|
||||
name = "allow-ssh"
|
||||
network = google_compute_network.vpc.id
|
||||
|
||||
allow {
|
||||
@ -51,7 +51,7 @@ resource "google_compute_firewall" "allowSsh" {
|
||||
}
|
||||
|
||||
|
||||
resource "google_compute_firewall" "frontToBack" {
|
||||
resource "google_compute_firewall" "fronttoback" {
|
||||
name = "front-to-back"
|
||||
network = google_compute_network.vpc.id
|
||||
|
||||
@ -64,8 +64,8 @@ resource "google_compute_firewall" "frontToBack" {
|
||||
target_tags = ["backend"]
|
||||
}
|
||||
|
||||
resource "google_compute_firewall" "backToDb" {
|
||||
name = "backToDb"
|
||||
resource "google_compute_firewall" "backtodb" {
|
||||
name = "back-to-db"
|
||||
network = google_compute_network.vpc.id
|
||||
|
||||
allow {
|
||||
|
Loading…
Reference in New Issue
Block a user