-
Notifications
You must be signed in to change notification settings - Fork 5
/
Datashades-OpsWorks-CKAN-GFS-Instances.json
222 lines (221 loc) · 5.42 KB
/
Datashades-OpsWorks-CKAN-GFS-Instances.json
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Creates an OpsWorks CKAN Stack.\n",
"Metadata": {
"AWS::CloudFormation::Interface": {
"ParameterGroups": [
{
"Label": {
"default": "OpsWorks Stack Details"
},
"Parameters": [
"OpsWorksStack",
"GFSLayerID",
"SolrLayerID",
"RedisLayerID",
"WebLayerID"
]
},
{
"Label": {
"default": "Stack Instance Details"
},
"Parameters": [
"DefaultEC2Key",
"NFSEC2Size",
"WebEC2Size",
"PrimarySubnet",
"SecondarySubnet"
]
}
],
"ParameterLabels": {
"NFSEC2Size": {
"default": "What instance size do you want to use for Service Instances?"
},
"WebEC2Size": {
"default": "What instance size do you want to use for Web Instances?"
},
"DefaultEC2Key": {
"default": "What EC2 key pair should these instances use for SSH access?"
},
"OpsWorksStack": {
"default": "What OpsWorks stack do you want to provision instances into?"
},
"GFSLayerID": {
"default": "What is the GFS Layer ID of the stack?"
},
"SolrLayerID": {
"default": "What is the Solr Layer ID of the stack?"
},
"RedisLayerID": {
"default": "What is the Redis Layer ID of the stack?"
},
"WebLayerID": {
"default": "What is the Web Layer ID of the stack?"
},
"PrimarySubnet": {
"default": "Which Subnet in the selected VPC should primary instances be provisioned in?"
},
"SecondarySubnet": {
"default": "Which Subnet in the selected VPC should seconardary/failover instances be provisioned in?"
}
}
}
},
"Parameters": {
"NFSEC2Size": {
"Description": "Select EC2 Instance Size.",
"Type": "String",
"Default": "t2.small",
"AllowedValues": [
"t2.small",
"t2.medium",
"t2.large",
"m3.medium",
"m3.large",
"m4.large",
"m4.xlarge",
"m4.2xlarge",
"m4.4xlarge",
"m4.10xlarge"
]
},
"WebEC2Size": {
"Description": "Select EC2 Instance Size.",
"Type": "String",
"Default": "t2.medium",
"AllowedValues": [
"t2.small",
"t2.medium",
"t2.large",
"m3.medium",
"m3.large",
"m4.large",
"m4.xlarge",
"m4.2xlarge",
"m4.4xlarge",
"m4.10xlarge"
]
},
"DefaultEC2Key": {
"Description": "Select an existing SSH key",
"Type": "AWS::EC2::KeyPair::KeyName"
},
"OpsWorksStack": {
"Description": "Enter an OpsWorks Stack ID.",
"Type": "String"
},
"GFSLayerID": {
"Description": "Enter an OpsWorks Stack Layer ID.",
"Type": "String"
},
"SolrLayerID": {
"Description": "Enter an OpsWorks Stack Layer ID.",
"Type": "String"
},
"RedisLayerID": {
"Description": "Enter an OpsWorks Stack Layer ID.",
"Type": "String"
},
"WebLayerID": {
"Description": "Enter an OpsWorks Stack Layer ID.",
"Type": "String"
},
"PrimarySubnet": {
"Type": "AWS::EC2::Subnet::Id",
"Description": "Select an existing subnet residing in the selected VPC."
},
"SecondarySubnet": {
"Type": "AWS::EC2::Subnet::Id",
"Description": "Select an existing subnet residing in the selected VPC."
}
},
"Resources": {
"OpwxEC2Services1": {
"Type": "AWS::OpsWorks::Instance",
"Properties": {
"SubnetId": {
"Ref": "PrimarySubnet"
},
"RootDeviceType": "ebs",
"InstallUpdatesOnBoot": true,
"InstanceType": {
"Ref": "NFSEC2Size"
},
"LayerIds": [
{
"Ref": "GFSLayerID"
},
{
"Ref": "RedisLayerID"
},
{
"Ref": "SolrLayerID"
}
],
"SshKeyName": {
"Ref": "DefaultEC2Key"
},
"StackId": {
"Ref": "OpsWorksStack"
}
}
},
"OpwxEC2Services2": {
"DependsOn": "OpwxEC2Services1",
"Type": "AWS::OpsWorks::Instance",
"Properties": {
"SubnetId": {
"Ref": "SecondarySubnet"
},
"RootDeviceType": "ebs",
"InstallUpdatesOnBoot": true,
"InstanceType": {
"Ref": "NFSEC2Size"
},
"LayerIds": [
{
"Ref": "GFSLayerID"
},
{
"Ref": "SolrLayerID"
}
],
"SshKeyName": {
"Ref": "DefaultEC2Key"
},
"StackId": {
"Ref": "OpsWorksStack"
}
}
},
"OpwxEC2WEB1": {
"Type": "AWS::OpsWorks::Instance",
"DependsOn": [
"OpwxEC2Services1",
"OpwxEC2Services2"
],
"Properties": {
"RootDeviceType": "ebs",
"InstallUpdatesOnBoot": true,
"InstanceType": {
"Ref": "WebEC2Size"
},
"LayerIds": [
{
"Ref": "WebLayerID"
}
],
"SshKeyName": {
"Ref": "DefaultEC2Key"
},
"StackId": {
"Ref": "OpsWorksStack"
}
}
}
},
"Outputs": {
}
}