Commit 569f99d1 by Sef Kloninger

vpc: allow outbound tcp/22

Need to be able to ssh *out* of our hosts to communicate with GitHub for
private repos. Add egress TCP port 22 access to the NATSecurityGroup.
parent b487b983
...@@ -1330,6 +1330,14 @@ ...@@ -1330,6 +1330,14 @@
"FromPort":"443", "FromPort":"443",
"ToPort":"443", "ToPort":"443",
"CidrIp":"0.0.0.0/0" "CidrIp":"0.0.0.0/0"
},
{
"IpProtocol":"tcp",
"FromPort":"22",
"ToPort":"22",
"CidrIp":{
"Ref":"SSHLocation"
}
} }
] ]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment