forked from pierront/but3-iac
fix/feature: fix network & add compute
This commit is contained in:
@@ -1,36 +1,24 @@
|
||||
variable "instance_type" {
|
||||
description = "Type de machine pour les instances Compute Engine"
|
||||
type = string
|
||||
default = "e2-medium"
|
||||
description = "type de l'instance"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "zone" {
|
||||
description = "Zone GCP où déployer les instances"
|
||||
type = string
|
||||
default = "europe-west1-b"
|
||||
description = "Nom de la zone"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "frontend_subnet_id" {
|
||||
description = "ID du sous-réseau frontend"
|
||||
type = string
|
||||
default = ""
|
||||
|
||||
description = "id du frontend"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "backend_subnet_id" {
|
||||
description = "ID du sous-réseau backend"
|
||||
type = string
|
||||
default = ""
|
||||
description = "id du backend"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "database_subnet_id" {
|
||||
description = "ID du sous-réseau database"
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "project_id" {
|
||||
description = "ID du projet GCP"
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
description = "id du database"
|
||||
type = string
|
||||
}
|
||||
Reference in New Issue
Block a user