-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
53 lines (43 loc) · 1.03 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
# Variables Configuration
variable "cluster_name" {
default = "kubernauts"
type = "string"
description = "The name of your EKS Cluster"
}
variable "rke_aws_region" {
default = "us-east-1"
# availabe regions are:
# us-east-1 (Virginia)
# us-west-2 (Oregon)
# eu-west-1 (Irland)
type = "string"
description = "The AWS Region to deploy EKS"
}
variable "rke_node_instance_type" {
default = "t2.medium"
type = "string"
description = "Node EC2 instance type"
}
variable "node_count" {
default = 3
type = "string"
description = "Autoscaling Desired node capacity"
}
variable "authorization" {
default = "rbac"
type = "string"
description = "authorization mode in rke cluster"
}
variable "AWS_ACCESS_KEY_ID" {
description = "AWS Access Key"
}
variable "AWS_SECRET_ACCESS_KEY" {
description = "AWS Secret Key"
}
variable "AWS_DEFAULT_REGION" {
description = "AWS Region"
}
variable "cloud_provider" {
default = "aws"
description = "cloud provider for rke"
}