-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
48 lines (40 loc) · 899 Bytes
/
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
# Authentication
variable "application_credential_id" {
type = string
}
variable "application_credential_secret" {
type = string
sensitive = true
}
# Project configuration
variable "project" {
type = string
default = "account-creation-assistance"
}
variable "resource_prefix" {
type = string
default = "accounts"
}
# blue/green deployments
variable "live_instance" {
type = string
description = "The currently-active instance of the application"
}
variable "staging_instance" {
type = string
description = "The instance of the application running as a staging environment"
}
# Proxies
variable "proxy_domain" {
type = string
default = "wmcloud.org"
}
variable "proxy_suffix" {
default = ""
type = string
}
# DNS zone
variable "dns_zone" {
type = string
default = "svc.account-creation-assistance.eqiad1.wikimedia.cloud."
}