-
Notifications
You must be signed in to change notification settings - Fork 31
/
variables.tf
78 lines (59 loc) · 1.08 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
variable "access_key" {}
variable "secret_key" {}
variable "region" {
default = "us-west-2"
}
variable "ssh_key_name" {
description = "Name of the SSH keypair to use in AWS."
}
variable "cluster_name" {
default = "testing"
}
variable "containers_cidr" {
default = "10.244.0.0/16"
}
variable "portal_net" {
default = "10.0.0.0/16"
}
variable "num_etcd" {
default = 3
}
variable "num_master" {
default = 1
}
variable "num_worker" {
default = 5
}
variable "ami" {
default = "ami-66e30706"
}
variable "etcd_instance_type" {
default = "t2.small"
}
variable "master_instance_type" {
default = "t2.small"
}
variable "worker_instance_type" {
default = "m3.medium"
}
variable "kubernetes_version" {
default = "1.1.7"
}
variable "pod_network" {
default = "10.2.0.0/16"
}
variable "service_ip_range" {
default = "10.3.0.0/24"
}
variable "k8s_service_ip" {
default = "10.3.0.1"
}
variable "dns_service_ip" {
default = "10.3.0.10"
}
variable "api_secure_port" {
default = "443"
}
variable "master_dns_name" {
default = ""
}