forked from pierront/but3-iac
correction arborescence
This commit is contained in:
35
terraform/modules/compute/variables.tf
Normal file
35
terraform/modules/compute/variables.tf
Normal file
@@ -0,0 +1,35 @@
|
||||
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user