forked from pierront/but3-iac
36 lines
546 B
Terraform
36 lines
546 B
Terraform
|
|
variable "projet_name" {
|
||
|
|
description = "Projet GCP"
|
||
|
|
type = string
|
||
|
|
default = "projet-hugo-478713"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "zone" {
|
||
|
|
description = "Zone GCP"
|
||
|
|
type = string
|
||
|
|
default = "europe-west9-b"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "instance_type" {
|
||
|
|
description = "Type de machine"
|
||
|
|
type = string
|
||
|
|
default = "e2-small"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "frontend_subnet_id" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "backend_subnet_id" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "database_subnet_id" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "os_login" {
|
||
|
|
type = bool
|
||
|
|
default = true
|
||
|
|
}
|
||
|
|
|