-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
107 lines (90 loc) · 1.82 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Cloudflare Variables
variable "cloudflare_zone_id" {
description = "The Cloudflare UUID for the Zone to use"
type = string
sensitive = true
}
variable "cloudflare_account_id" {
description = "The Cloudflare UUID for the Account the Zone lives in"
type = string
sensitive = true
}
variable "cloudflare_email" {
description = "Cloudflare email user"
type = string
sensitive = true
}
variable "cloudflare_api_token" {
description = "Cloudflare API Token"
type = string
sensitive = true
}
variable "app_tunnel_name" {
description = "Name used across Argo Tunnel, and Access Application"
type = string
}
variable "dns_record" {
type = string
default = ""
}
variable "service_type" {
type = string
default = ""
}
variable "session_duration" {
type = string
default = "1h"
}
variable "access_policy_name" {
type = string
default = ""
}
variable "email_domain" {
type = string
default = ""
}
variable "logo_url" {
type = string
default = ""
}
# GCP server variables
variable "gcp_project" {
description = "gcp project id"
type = string
}
variable "zone" {
description = "GCP Region/Zone"
type = string
}
variable "gcp_label" {
description = "Label objects created in GCP with:"
type = string
}
variable "server_name" {
type = string
}
variable "server_image" {
type = string
}
variable "server_type" {
type = string
}
variable "network_tier" {
type = string
}
variable "script_loc" {
description = "configuration script"
type = string
}
variable "gcp_net_tag" {
description = "Network Tag"
type = string
}
variable "pre_empt" {
description = "Pre-Empt VM"
type = string
}
variable "gcp_fw_rule_name" {
description = "VPC Firewall Name"
type = string
}