-
Notifications
You must be signed in to change notification settings - Fork 23
/
variables.tf
121 lines (97 loc) · 2.21 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
variable "enable_alibaba" {
description = "Enable / Disable Alibaba"
type = bool
default = false
}
variable "enable_amazon" {
description = "Enable / Disable Amazon"
type = bool
default = false
}
variable "enable_digitalocean" {
description = "Enable / Disable DigitalOcean"
type = bool
default = false
}
variable "enable_google" {
description = "Enable / Disable Google"
type = bool
default = false
}
variable "enable_microsoft" {
description = "Enable / Disable Microsoft"
type = bool
default = false
}
variable "enable_oracle" {
description = "Enable / Disable Oracle"
type = bool
default = false
}
## Kubernetes worker nodes
variable "nodes" {
description = "Worker nodes (e.g. `2`)"
type = number
default = 2
}
## Alibaba Cloud
variable "ali_access_key" {
description = "Alibaba Cloud AccessKey ID"
type = string
default = ""
}
variable "ali_secret_key" {
description = "Alibaba Cloud Access Key Secret"
type = string
default = ""
}
### Amazon
variable "aws_profile" {
description = "AWS cli profile (e.g. `default`)"
type = string
default = "default"
}
## Digital Ocean
variable "do_token" {
description = "Digital Ocean personal access (API) token"
type = string
default = ""
}
## Google Cloud
variable "gcp_project" {
description = "GCP Project ID"
type = string
default = ""
}
## Microsoft Azure
variable "az_client_id" {
description = "Azure Service Principal appId"
type = string
default = ""
}
variable "az_client_secret" {
description = "Azure Service Principal password"
type = string
default = ""
}
variable "az_tenant_id" {
description = "Azure Service Principal tenant"
type = string
default = ""
}
### Oracle Cloud Infrastructure
variable "oci_user_ocid" {
description = "OCI User OCID"
type = string
default = ""
}
variable "oci_tenancy_ocid" {
description = "OCI Tenancy OCID"
type = string
default = ""
}
variable "oci_fingerprint" {
description = "OCI SSH public key fingerprint"
type = string
default = ""
}