Last active
November 9, 2023 20:57
Revisions
-
lbbedendo revised this gist
Nov 9, 2023 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1,5 @@ --list private ip addresses from the specified <subnet-id> aws ec2 describe-network-interfaces --filters Name=subnet-id,Values=<subnet-id> | jq -r '.NetworkInterfaces[].PrivateIpAddress' | sort --list dependencies of a security group aws ec2 describe-network-interfaces --filters Name=group-id,Values=<security-group-id> -
lbbedendo created this gist
May 26, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ aws ec2 describe-network-interfaces --filters Name=subnet-id,Values=<subnet_id> | jq -r '.NetworkInterfaces[].PrivateIpAddress' | sort