Files
but3-iac/tp-cloud/terraform/environments/dev/variables.tf

46 lines
786 B
HCL

variable "project_id" {
type = string
default = "first-project-478713"
}
variable "project_name" {
type = string
default = "First project"
}
variable "region" {
type = string
default = "europe-west9"
}
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 = "0.0.0.0/0"
}
variable "instance_type" {
description = "type de l'instance"
type = string
default = "e2-small"
}
variable "zone" {
description = "Nom de la zone"
type = string
default = "europe-west9-b"
}