-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
83 lines (70 loc) · 1.49 KB
/
variables.tf
File metadata and controls
83 lines (70 loc) · 1.49 KB
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
variable "cloudflare_account_id" {
description = "Cloudflare account id"
type = string
nullable = false
}
variable "domain" {
description = "domain"
type = string
nullable = false
}
variable "cloudflare_zone_id" {
description = "cloudflare worker zone id"
type = string
nullable = false
}
variable "cloudflare_token" {
description = "cloudflare token"
type = string
nullable = false
}
variable project_name {
description = "project name"
type = string
nullable = false
}
variable GCP_LOGGING_PROJECT_ID {
description = "GCP logging project id"
type = string
nullable = false
}
variable GCP_LOGGING_CREDENTIALS {
description = "GCP logging credentials"
type = string
nullable = false
}
variable GCP_BIGQUERY_PROJECT_ID {
description = "GCP bigquery project id"
type = string
nullable = false
}
variable GCP_BIGQUERY_CREDENTIALS {
description = "GCP bigquery credentials"
type = string
nullable = false
}
variable GCP_USERINFO_CREDENTIALS {
description = "GCP UserInfo credentials"
type = string
nullable = false
}
variable GLOBAL_SHARED_SECRET {
description = "Global shared secret"
type = string
nullable = false
}
variable ALLOWED_HOSTS {
description = "Allowed hosts"
type = string
nullable = false
}
variable environment {
description = "Environment"
type = string
nullable = false
}
variable VERSION {
description = "Version"
type = string
nullable = false
}