Skip to content

Instantly share code, notes, and snippets.

@vladholubiev
Created April 21, 2021 15:44
Show Gist options
  • Save vladholubiev/08551d4b6555d52304f6b4e9bfcd7634 to your computer and use it in GitHub Desktop.
Save vladholubiev/08551d4b6555d52304f6b4e9bfcd7634 to your computer and use it in GitHub Desktop.
# usage get_api_key some-name
function get_api_key {
value=$(aws apigateway get-api-keys --query "items[?name=='${1}'].value" --include-values --output text);
echo "${value}";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment