Commit 64b1109e by Feanil Patel

Merge pull request #101 from edx/feanil/cloudformation_updates

Cloudformation Security Group and port forwarding updates.
parents 6146b55f 31debf76
...@@ -54,6 +54,11 @@ ...@@ -54,6 +54,11 @@
"Type":"Number", "Type":"Number",
"Default":"11211" "Default":"11211"
}, },
"SSLCertificateARN":{
"Description":"The ARN for an SSL certificate to use with the edxapp.",
"Type":"String",
"Default":"arn:aws:iam::372153017832:server-certificate/dummy"
},
"BastionInstanceType":{ "BastionInstanceType":{
"Description":"Bastion Host EC2 instance type", "Description":"Bastion Host EC2 instance type",
"Type":"String", "Type":"String",
...@@ -1786,10 +1791,21 @@ ...@@ -1786,10 +1791,21 @@
"Ref":"WebServerPort" "Ref":"WebServerPort"
}, },
"Protocol":"HTTP" "Protocol":"HTTP"
},
{
"LoadBalancerPort":"443",
"InstancePort":{
"Ref":"WebServerPort"
},
"Protocol":"HTTPS",
"InstanceProtocol":"HTTP",
"SSLCertificateId": {
"Ref": "SSLCertificateARN"
}
} }
], ],
"HealthCheck":{ "HealthCheck":{
"Target":"TCP:22", "Target":"HTTP:80/heartbeat",
"HealthyThreshold":"3", "HealthyThreshold":"3",
"UnhealthyThreshold":"5", "UnhealthyThreshold":"5",
"Interval":"30", "Interval":"30",
......
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