This commit is contained in:
2024-12-04 16:11:44 +01:00
parent 00946add4d
commit 9e9fe81630
3 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
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 = var.cidr_range
frontend_cidr = var.frontend_cidr
backend_cidr = var.backend_cidr
database_cidr = var.database
ssh_source_ranges = var.ssh_source_ranges
}

View File

@@ -0,0 +1,41 @@
variable "project_name" {
description = "ID du projet"
type = string
default = "tp-1-docker"
}
variable "region" {
description = "region du projet"
type = string
default = "europe-west4-a"
}
variable "frontend_cidr" {
description = "frontend"
type = string
default = "10.0.1.0/24"
}
variable "backend_cidr" {
description = "backend"
type = string
default = "10.0.2.0/24"
}
variable "database_cidr" {
description = "database"
type = string
default = "10.0.3.0/24"
}
variable "ssh_source_ranges" {
description = "acces internet"
type = string
default = "0.0.0.0/24"
}
variable "cidr_range" {
description = "cidr de network"
type = string
default = "10.0.0.0/16"
}