compute pas fini

This commit is contained in:
jannaire
2025-12-03 16:27:18 +00:00
parent 624bced57e
commit 094b1fd7e8
16 changed files with 1848 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
variable "project_name" {
type = string
default = "fluted-agency-478713-h5"
}
variable "region" {
type = string
default = "europe-west9"
}
variable "zone" {
type = string
default = "europe-west9-a"
}
variable "frontend_cidr" {
type = string
default = "10.0.1.0/24"
}
variable "backend_cidr" {
type = string
default = "10.0.2.0/24"
}
variable "database_cidr" {
type = string
default = "10.0.3.0/24"
}
variable "ssh_source_ranges" {
type = string
default = "34.155.72.245/32"
}
variable "instance_type" {
type = string
default = "e2-medium"
}