-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
63 lines (54 loc) · 1.9 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#------------------------------------------------------------------------------#
# GLOBAL SETTINGS #
#------------------------------------------------------------------------------#
variable "global_region" {
description = "The region Terraform operates against."
type = string
# default = "europe-north1" # Finland
}
variable "environment" {
description = "Global Terraform project environment."
type = string
}
variable "project_id" {
description = "The project Terraform operates on."
type = string
}
variable "project_number" {
description = "The project number Terraform operates on."
type = number
}
# LABELS
variable "default_labels" {
type = map(string)
description = "Map of default labels"
}
#------------------------------------------------------------------------------#
# NETWORK #
#------------------------------------------------------------------------------#
variable "network_environment_prefix" {
type = string
description = "Prefix to use in subdomains for TLS certs"
}
#------------------------------------------------------------------------------#
# APPS #
#------------------------------------------------------------------------------#
# BACKEND
# SERVER APP
variable "be_app_server_tag" {
description = "BE server app Docker tag."
type = string
}
variable "be_app_server_name" {
description = "BE server app name."
type = string
}
variable "be_app_server_sa_display_name" {
description = "BE server app service account display name."
type = string
# default = "Backend Server"
}
variable "be_app_env_variables" {
description = "BE server app environment variables map."
type = map(string)
}