Skip to content

Instantly share code, notes, and snippets.

@epicfaace
Created January 24, 2025 02:04
Show Gist options
  • Save epicfaace/611bdfe8c6659e1019bec4218a2a188f to your computer and use it in GitHub Desktop.
Save epicfaace/611bdfe8c6659e1019bec4218a2a188f to your computer and use it in GitHub Desktop.
forward.sh
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