-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
39 lines (34 loc) · 1.12 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## project related
variable "project_id" {
description = "The project id to work with"
type = string
}
variable "region" {
description = "region for region-aware resources"
type = string
default = "europe-west1"
}
variable "gke_location" {
description = "location for the gke cluster. Will default to region if not specified."
type = string
default = "europe-west1"
}
variable "dns_admin_serviceaccount" {
description = "represents the service account that will be used to manage dns records"
type = string
default = "dns-admin"
}
variable "dns_master_zone_name" {
description = "The DNS master zone name for creating NS records."
type = string
default = "dns-master-zone"
}
variable "user_prefix" {
type = string
description = "Este campo é obrigatório para definir a vossa unicidade."
## Aqui podem verificar a utilização de uma regra de validação para o campo
validation {
condition = can(regex("^[a-z]+$", var.user_prefix))
error_message = "Valor inválido. Tem que ser lower-case, sem números nem caracteres especiais."
}
}