Skip to content

Instantly share code, notes, and snippets.

@tamarabartlett
Created April 20, 2017 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamarabartlett/06e8d8f6b65db78a765463e50b5637aa to your computer and use it in GitHub Desktop.
Save tamarabartlett/06e8d8f6b65db78a765463e50b5637aa to your computer and use it in GitHub Desktop.
Just a snippet of a security group that can ping
"SecurityGroupIngress" : [
{ "IpProtocol" : "tcp", "FromPort" : "22", "ToPort" : "22", "CidrIp" : "0.0.0.0/0" },
{ "IpProtocol" : "icmp", "FromPort" : "-1", "ToPort" : "-1", "CidrIp" : "0.0.0.0/0" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment