Skip to content

Instantly share code, notes, and snippets.

@jeetendra-choudhary
Last active March 30, 2018 19:17
Show Gist options
  • Save jeetendra-choudhary/b22b8173966e321faa514a17d33a8585 to your computer and use it in GitHub Desktop.
Save jeetendra-choudhary/b22b8173966e321faa514a17d33a8585 to your computer and use it in GitHub Desktop.
DB Server security Group
"SecurityGroupIngress": [
{
"IpProtocol": "tcp",
"FromPort": "443",
"ToPort": "443",
"CidrIp": "0.0.0.0/0"
},
{
"IpProtocol": "tcp",
"FromPort": "80",
"ToPort": "80",
"CidrIp": "0.0.0.0/0"
},
{
"IpProtocol": "tcp",
"FromPort": "22",
"ToPort": "22",
"CidrIp": "0.0.0.0/0"
},
{
"IpProtocol": "tcp",
"FromPort": "12077",
"ToPort": "12077",
"CidrIp": "0.0.0.0/0"
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment