-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvariables.tf
57 lines (45 loc) · 895 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
variable "project" {
type = "string"
}
variable "region" {
type = "string"
}
variable "zones" {
type = "list"
}
variable "nat_machine_type" {
default = "n1-standard-4"
type = "string"
}
variable "opsman_machine_type" {
default = "n1-standard-2"
type = "string"
}
variable "service_account_key" {
type = "string"
}
variable "env_prefix" {
type = "string"
}
variable "infrastructure_cidr" {
type = "string"
description = "cidr for infrastructure subnet"
default = "192.168.101.0/26"
}
variable "pks_cidr" {
type = "string"
description = "cidr for pks subnet"
default = "192.168.16.0/26"
}
variable "services_cidr" {
type = "string"
description = "cidr for services subnet"
default = "192.168.20.0/22"
}
variable "opsman_image_url" {
type = "string"
}
variable "pks_lb_count" {
type = "string"
default = 1
}