-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
101 lines (83 loc) · 1.88 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
# GCP variables
variable "gcp_project_id" {
description = "Google Cloud Platform (GCP) Project ID."
type = string
}
variable "gcp_zone" {
description = "GCP region name."
type = string
}
variable "gcp_machine_type" {
description = "GCP VM instance machine type."
type = string
}
variable "gcp_preemtible" {
description = ""
type = bool
}
variable "gcp_automatic_restart" {
description = ""
type = bool
}
# Cloudflare Variables
variable "cloudflare_account_id" {
description = "The Cloudflare UUID for the Account the Zone lives in."
type = string
sensitive = true
}
variable "cloudflare_zone_name" {
description = "The Cloudflare Zone to use."
type = string
}
variable "cloudflare_email" {
description = "The Cloudflare user."
type = string
sensitive = true
}
variable "cloudflare_api_key" {
description = "The Cloudflare user's API key."
sensitive = true
type = string
}
# Vault variables
variable "vault_subdomain" {
description = "The Vault subdomain to use, -ssh will be also created."
type = string
}
variable "vault_subdomain_suffix_ssh" {
description = "The Vault subdomain suffix to use for SSH web terminal"
type = string
}
variable "vault_subdomain_suffix_warp" {
type = string
}
variable "vault_users" {
description = ""
type = list(any)
default = []
}
variable "vault_ssh_users" {
description = ""
type = list(any)
default = []
}
variable "vault_kms_auto_unseal" {
description = ""
type = bool
}
variable "vault_kms_keyring_name" {
description = ""
type = string
}
variable "vault_kms_keyring_location" {
description = ""
type = string
}
variable "vault_gcs_bucket_name" {
description = ""
type = string
}
variable "vault_gcs_location" {
description = ""
type = string
}