Commit 56e3a149 by Feanil Patel

Add names to ec2 instances launched via autoscaling groups.

parent c1a2a51e
...@@ -3072,6 +3072,11 @@ ...@@ -3072,6 +3072,11 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"edxapp"]]},
"PropagateAtLaunch":true
},
{
"Key":"play", "Key":"play",
"Value":"edxapp", "Value":"edxapp",
"PropagateAtLaunch":true "PropagateAtLaunch":true
...@@ -3390,6 +3395,11 @@ ...@@ -3390,6 +3395,11 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"xqueue"]]},
"PropagateAtLaunch":true
},
{
"Key":"play", "Key":"play",
"Value":"xqueue", "Value":"xqueue",
"PropagateAtLaunch":true "PropagateAtLaunch":true
...@@ -3703,6 +3713,11 @@ ...@@ -3703,6 +3713,11 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"commoncluster"]]},
"PropagateAtLaunch":true
},
{
"Key":"play", "Key":"play",
"Value":"commoncluster", "Value":"commoncluster",
"PropagateAtLaunch":true "PropagateAtLaunch":true
...@@ -4261,6 +4276,11 @@ ...@@ -4261,6 +4276,11 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"xserver"]]},
"PropagateAtLaunch":true
},
{
"Key":"play", "Key":"play",
"Value":"xserver", "Value":"xserver",
"PropagateAtLaunch":true "PropagateAtLaunch":true
...@@ -4685,6 +4705,11 @@ ...@@ -4685,6 +4705,11 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"worker"]]},
"PropagateAtLaunch":true
},
{
"Key":"play", "Key":"play",
"Value":"worker", "Value":"worker",
"PropagateAtLaunch":true "PropagateAtLaunch":true
...@@ -4897,6 +4922,11 @@ ...@@ -4897,6 +4922,11 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"forum"]]},
"PropagateAtLaunch":true
},
{
"Key":"play", "Key":"play",
"Value":"forum", "Value":"forum",
"PropagateAtLaunch":true "PropagateAtLaunch":true
...@@ -5292,6 +5322,11 @@ ...@@ -5292,6 +5322,11 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"mongo"]]},
"PropagateAtLaunch":true
},
{
"Key":"play", "Key":"play",
"Value":"mongo", "Value":"mongo",
"PropagateAtLaunch":true "PropagateAtLaunch":true
...@@ -5609,15 +5644,24 @@ ...@@ -5609,15 +5644,24 @@
], ],
"Tags":[ "Tags":[
{ {
"Key":"Name",
"Value": {"Fn::Join": ["-",[{"Ref": "EnvironmentTag"},"notifier"]]}
},
{
"Key":"play", "Key":"play",
"Value":"notifier" "Value":"notifier"
}, },
{ {
"Key":"environment",
"Value":{
"Ref":"EnvironmentTag"
}
},
{
"Key":"deployment", "Key":"deployment",
"Value":{ "Value":{
"Ref":"DeploymentTag" "Ref":"DeploymentTag"
}, }
"PropagateAtLaunch":true
} }
], ],
"BlockDeviceMappings":[ "BlockDeviceMappings":[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment