Skip to content

Instantly share code, notes, and snippets.

@przygode
Created September 21, 2012 05:15
Show Gist options
  • Select an option

  • Save przygode/3759844 to your computer and use it in GitHub Desktop.

Select an option

Save przygode/3759844 to your computer and use it in GitHub Desktop.
auto-scaling-secruitygroup
{
"AppServerAccess": {
"Type": "AWS::EC2::SecurityGroup",
"Properties": {
"GroupDescription": "AppServerAccess",
"SecurityGroupIngress": [
{
"IpProtocol": "tcp",
"FromPort": "80",
"ToPort": "80",
"CidrIp": "0.0.0.0/0"
},
{
"IpProtocol": "tcp",
"FromPort": "443",
"ToPort": "443",
"CidrIp": "0.0.0.0/0"
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment