zivildienst/infrastructure/modules/environment/variables.tf

41 lines
623 B
HCL

variable "environment_name" {
description = "Unique name which identifies the enviornment (e.g. 'production', 'staging', ..)"
default = "testing"
}
variable "dc_default_id" {
default = "nbg1"
}
variable "dc_nuremberg_id" {
default = "nbg1"
}
variable "dc_falkenstein_id" {
default = "fsn1"
}
variable "dc_helsinki_id" {
default = "hel1"
}
variable "eu_network_zone" {
default = "eu-central"
}
variable "primary_network" {
default = "10.0.0.0/16"
}
variable "subnet_a" {
default = "10.0.1.0/24"
}
variable "subnet_b" {
default = "10.0.2.0/24"
}
variable "subnet_c" {
default = "10.0.3.0/24"
}