Created
January 24, 2025 02:04
-
-
Save epicfaace/611bdfe8c6659e1019bec4218a2a188f to your computer and use it in GitHub Desktop.
forward.sh
This file contains 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
alias forward='function _forward() { | |
aws ssm start-session \ | |
--target $INSTANCE_ID \ | |
--document-name AWS-StartPortForwardingSession \ | |
--parameters "{\"portNumber\":[\"$1\"],\"localPortNumber\":[\"$1\"]}" | |
}; _forward' | |
# Usage: | |
# forward 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment