
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
24 lines
669 B
Plaintext
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"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|