mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 15:04:57 +00:00
fix ref
This commit is contained in:
6
main.tf
6
main.tf
@@ -10,7 +10,7 @@ provider "google" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module "network" {
|
module "network" {
|
||||||
source = "./network"
|
source = "./modules/network"
|
||||||
project_id = var.project_id
|
project_id = var.project_id
|
||||||
region = var.region
|
region = var.region
|
||||||
network = var.network
|
network = var.network
|
||||||
@@ -18,11 +18,11 @@ module "network" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module "backend" {
|
module "backend" {
|
||||||
source = "./backend"
|
source = "./modules/backend"
|
||||||
}
|
}
|
||||||
|
|
||||||
module "frontend" {
|
module "frontend" {
|
||||||
source = "./frontend"
|
source = "./modules/frontend"
|
||||||
project_id = var.project_id
|
project_id = var.project_id
|
||||||
region = var.region
|
region = var.region
|
||||||
instance_type = var.instance_type
|
instance_type = var.instance_type
|
||||||
|
|||||||
Reference in New Issue
Block a user