bcp de chose
This commit is contained in:
52
environments/dev/main.tf
Normal file
52
environments/dev/main.tf
Normal file
@@ -0,0 +1,52 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
google = {
|
||||
source = "hashicorp/google"
|
||||
version = "~> 6.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "google" {
|
||||
project = var.project_id
|
||||
region = var.region
|
||||
}
|
||||
|
||||
module "network" {
|
||||
source = "./modules/network"
|
||||
|
||||
# Variables d'entrée
|
||||
project_name = var.project_name
|
||||
region = var.region
|
||||
|
||||
# Autres variables spécifiques au module
|
||||
cidr_range = "10.0.0.0/16"
|
||||
}
|
||||
|
||||
module "network" {
|
||||
source = "./modules/iam"
|
||||
|
||||
# Variables d'entrée
|
||||
project_name = var.project_name
|
||||
region = var.region
|
||||
|
||||
# Autres variables spécifiques au module
|
||||
cidr_range = "10.0.0.0/16"
|
||||
}
|
||||
|
||||
module "network" {
|
||||
source = "./modules/compute"
|
||||
|
||||
# Variables d'entrée
|
||||
project_name = var.project_name
|
||||
region = var.region
|
||||
|
||||
# Autres variables spécifiques au module
|
||||
cidr_range = "10.0.0.0/16"
|
||||
backend_cidr = var.backend_cidr
|
||||
frontend_cidr = var.frontend_cidr
|
||||
database_cidr = var.database_cidr
|
||||
ssh_source_ranges = var.ssh_source_ranges
|
||||
zone = var.zone
|
||||
instance_type = var.instance_type
|
||||
}
|
Reference in New Issue
Block a user