forked from pierront/but3-iac
41 lines
613 B
HCL
41 lines
613 B
HCL
variable "project_name" {
|
|
type = string
|
|
default = "fluted-agency-478713-h5"
|
|
}
|
|
|
|
variable "region" {
|
|
type = string
|
|
default = "europe-west9"
|
|
}
|
|
|
|
variable "zone" {
|
|
type = string
|
|
default = "europe-west9-b"
|
|
}
|
|
|
|
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"
|
|
}
|
|
|