-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
60 lines (51 loc) · 1.13 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
variable "aws_region" {
default = "us-west-2"
description = "The region in which the EKS cluster will be deployed."
type = string
}
variable "AWS_ACCESS_KEY_ID" {
default = ""
description = "Access key ID"
type = string
}
variable "AWS_SECRET_ACCESS_KEY" {
default = ""
description = "AWS secret access key"
}
variable "cf_member" {
default = ""
description = "Cloud Function invoker"
}
variable "project_id" {
default = ""
description = "Goole Cloud project ID"
}
variable "region" {
default = ""
description = "Google Cloud region"
}
variable "azAppId" {
default = ""
description = "Azure SP ID"
type = string
}
variable "azPassword" {
default = ""
description = "Azure SP Password"
type = string
}
variable "azSpDisplayName" {
default = "tf-aks-gh"
description = "Service principal display name"
type = string
}
variable "azSubscriptionId" {
default = ""
description = "Azure Subscription ID"
type = string
}
variable "azTenant" {
default = ""
description = "Azure Tenant"
type = string
}