Commit f56b7f5f by Feanil Patel

Correct HTTPS listener section to have the SSL Certificate.

parent b42fd2aa
...@@ -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",
...@@ -1792,7 +1797,11 @@ ...@@ -1792,7 +1797,11 @@
"InstancePort":{ "InstancePort":{
"Ref":"WebServerPort" "Ref":"WebServerPort"
}, },
"Protocol":"HTTP" "Protocol":"HTTPS",
"InstanceProtocol":"HTTP",
"SSLCertificateId": {
"Ref": "SSLCertificateARN"
}
} }
], ],
"HealthCheck":{ "HealthCheck":{
......
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