You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This directory holds the infrastrucutre templates to run Storedog on AWS ECS via EC2. EC2 is the preferred hosting engine due to the `bridge` network mode, which is not available in Fargate. This allows our containers to inter-communicate.
4
+
5
+
The memory and CPU settings defined in the `storedog-task-definition.json` assume you are running at least one `m3.xlarge` instance. Note that these settings have not yet been optimized so there is an opportunity to downsize.
"Description": "The template used to create an ECS Cluster from the ECS Console.",
4
+
"Parameters": {
5
+
"ECSClusterName": {
6
+
"Type": "String",
7
+
"Description": "Specifies the ECS Cluster Name with which the resources would be associated",
8
+
"Default": "Storedog-Cluster"
9
+
},
10
+
"SecurityGroupIds": {
11
+
"Type": "CommaDelimitedList",
12
+
"Description": "Optional - Specifies the Comma separated list of the Security Group Id of an existing Security Group.",
13
+
"Default": ""
14
+
},
15
+
"VpcId": {
16
+
"Type": "String",
17
+
"Description": "Optional - Specifies the ID of an existing VPC in which to launch your container instances. If you specify a VPC ID, you must specify a list of existing subnets in that VPC. If you do not specify a VPC ID, a new VPC is created with at least 1 subnet.",
18
+
"Default": "",
19
+
"AllowedPattern": "^(?:vpc-[0-9a-f]{8,17}|)$",
20
+
"ConstraintDescription": "VPC Id must begin with 'vpc-' and have a valid uuid"
21
+
},
22
+
"SubnetIds": {
23
+
"Type": "CommaDelimitedList",
24
+
"Description": "Optional - Specifies the Comma separated list of existing VPC Subnet Ids where ECS instances will run",
0 commit comments