Created
July 24, 2019 01:06
-
-
Save jacobkahn/527f7eb2fe85e56074163544ede4e491 to your computer and use it in GitHub Desktop.
aws ec2 describe-security-groups --group-ids sg-0d37d17f642362f03
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"SecurityGroups": [ | |
{ | |
"IpPermissionsEgress": [ | |
{ | |
"IpProtocol": "-1", | |
"PrefixListIds": [], | |
"IpRanges": [ | |
{ | |
"CidrIp": "0.0.0.0/0" | |
} | |
], | |
"UserIdGroupPairs": [ | |
{ | |
"UserId": "663935473368", | |
"GroupId": "sg-0d37d17f642362f03" | |
} | |
], | |
"Ipv6Ranges": [ | |
{ | |
"CidrIpv6": "::/0" | |
} | |
] | |
} | |
], | |
"Description": "SG for wav2letter benchmarks", | |
"IpPermissions": [ | |
{ | |
"IpProtocol": "-1", | |
"PrefixListIds": [], | |
"IpRanges": [ | |
{ | |
"CidrIp": "0.0.0.0/0" | |
} | |
], | |
"UserIdGroupPairs": [ | |
{ | |
"UserId": "663935473368", | |
"GroupId": "sg-0d37d17f642362f03" | |
} | |
], | |
"Ipv6Ranges": [] | |
}, | |
{ | |
"PrefixListIds": [], | |
"FromPort": 22, | |
"IpRanges": [ | |
{ | |
"CidrIp": "0.0.0.0/0" | |
} | |
], | |
"ToPort": 22, | |
"IpProtocol": "tcp", | |
"UserIdGroupPairs": [], | |
"Ipv6Ranges": [] | |
} | |
], | |
"GroupName": "fair-speech-benchmark", | |
"VpcId": "vpc-26bc745c", | |
"OwnerId": "663935473368", | |
"GroupId": "sg-0d37d17f642362f03" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment