-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
90 lines (72 loc) · 1.65 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
variable "billing_account" {
type = string
description = "GCP billing account"
}
variable "org_id" {
type = string
description = "GCP Organization ID"
}
variable "vpc_pid" {
type = string
description = "GCP project ID of the host project."
}
variable "region1" {
type = string
description = "GCP region where resources are created."
default = "asia-southeast1"
}
variable "region1_zones" {
type = list(any)
description = "GCP zone in the var.region where resources are created."
default = ["asia-southeast1-a", "asia-southeast1-b", "asia-southeast1-c"]
}
variable "region2" {
type = string
description = "GCP region where resources are created."
default = "asia-east2"
}
variable "region2_zones" {
type = list(any)
description = "GCP zone in the var.region where resources are created."
default = ["asia-east2-a", "asia-east2-b", "asia-east2-c"]
}
variable "bucket_name" {
type = string
description = "GCP bucket name"
default = "gcp-poc-cdn"
}
variable "bucket_location" {
type = string
description = "GCP bucket location"
default = "ASIA"
}
variable "email_address" {
type = string
}
variable "domain_name" {
type = string
}
variable "certificate_name" {
type = string
}
variable "dns_zone_resource_group_name" {
type = string
}
variable "azure_client_id" {
type = string
}
variable "azure_client_secret" {
type = string
}
variable "azure_subscription_id" {
type = string
}
variable "azure_tenant_id" {
type = string
}
variable "db_username" {
type = string
}
variable "db_password" {
type = string
}