forked from w3f/terraform-azure-polkadot-deployer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
38 lines (32 loc) · 836 Bytes
/
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
variable "client_id" {
description = "The Client ID for the Service Principal"
type = string
}
variable "client_secret" {
description = "The Client Secret for the Service Principal"
type = string
}
variable "cluster_name" {
description = "Name of the AKS cluster"
default = "polkadot-deployer"
type = string
}
variable "location" {
description = "Azure location"
type = string
}
variable "node_count" {
description = "Size of Kubernetes cluster"
default = 2
type = number
}
variable "machine_type" {
description = "Type of virtual machines used for the cluster"
default = "Standard_D2s_v3"
type = string
}
variable "k8s_version" {
description = "Kubernetes version to use for the AKS cluster"
default = "1.15.10"
type = string
}