fix conflicts

This commit is contained in:
gregory hendrickson
2023-03-15 12:03:50 -07:00
parent c591e29aa3
commit 2a396b56a4
2 changed files with 4 additions and 22 deletions

19
main.tf
View File

@@ -2,22 +2,11 @@ terraform {
required_version = ">= 0.14.0"
}
variable "project_id" {
description = "The ID of the GCP project."
}
variable "region" {
description = "The region to create resources in."
default = "us-central1"
}
provider "google" {
project = var.project_id
region = var.region
}
module "network" {
source = "./modules/network"
source = "./modules/network"
project_id = var.project_id
region = var.region
network_cidr= var.network_cidr
}
module "backend" {