ativelkov e665fcec48 SSL port (443) is open for web servers now
WebServerSecurity template (earlier known as ApacheSecurity) had a typo: SSL port was specified as 433, rathen then 443.
This is fixed by now.

Change-Id: Ibd3d68d5649884d85c09e1a4833fd2ab788886d8
Closes-bug: #1259500
2013-12-10 14:50:07 +04:00

24 lines
669 B
Plaintext

{
"Resources": {
"$MuranoSecurityGroup-{envName}": {
"Type": "AWS::EC2::SecurityGroup",
"Properties": {
"SecurityGroupIngress": [
{
"ToPort": "80",
"IpProtocol": "tcp",
"FromPort": "80",
"CidrIp": "0.0.0.0/0"
},
{
"ToPort": "443",
"IpProtocol": "tcp",
"FromPort": "443",
"CidrIp": "0.0.0.0/0"
}
]
}
}
}
}