forked from vmware-archive/terraforming-gcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
122 lines (98 loc) · 2.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
variable "project" {
type = "string"
}
variable "env_name" {
type = "string"
}
variable "region" {
type = "string"
}
variable "management_cidr" {
type = "string"
description = "cidr for management subnet"
default = "10.0.0.0/24"
}
variable "pas_cidr" {
type = "string"
description = "cidr for pas subnet"
default = "10.0.4.0/24"
}
variable "services_cidr" {
type = "string"
description = "cidr for services subnet"
default = "10.0.8.0/24"
}
variable "zones" {
type = "list"
}
variable "opsman_image_url" {
type = "string"
description = "location of ops manager image on google cloud storage"
}
variable "optional_opsman_image_url" {
type = "string"
description = "location of ops manager image (to be used for optional extra instance) on google cloud storage"
default = ""
}
variable "opsman_machine_type" {
type = "string"
default = "n1-standard-2"
}
variable "service_account_key" {
type = "string"
}
variable "dns_suffix" {
type = "string"
}
variable "ssl_cert" {
type = "string"
description = "ssl certificate content"
}
variable "ssl_private_key" {
type = "string"
description = "ssl certificate private key content"
}
variable "external_database" {
description = "standups up a cloud sql database instance for the ops manager and PAS"
default = false
}
/******************
* OpsMan Options *
******************/
variable "opsman_storage_bucket_count" {
type = "string"
default = "0"
description = "Optional configuration of a Google Storage Bucket for BOSH's blobstore"
}
variable "pas_sql_db_host" {
type = "string"
default = ""
}
variable "opsman_sql_db_host" {
type = "string"
default = ""
}
/*****************************
* Isolation Segment Options *
*****************************/
variable "isolation_segment" {
description = "create the required infrastructure to deploy isolation segment"
default = false
}
variable "iso_seg_ssl_cert" {
type = "string"
description = "ssl certificate content"
default = ""
}
variable "iso_seg_ssl_private_key" {
type = "string"
description = "ssl certificate private key content"
default = ""
}
/********************************
* Google Cloud Storage Options *
********************************/
variable "create_gcs_buckets" {
description = "create Google Storage Buckets for Elastic Runtime Cloud Controller's file storage"
default = true
}