Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nitrocode/e45d7aebf904a9fde8f0ce4b3305a4e3 to your computer and use it in GitHub Desktop.

Select an option

Save nitrocode/e45d7aebf904a9fde8f0ce4b3305a4e3 to your computer and use it in GitHub Desktop.
Find aws services supported in a region

Find aws services supported in a region

REGION=ap-southeast-3

aws ssm get-parameters-by-path \
  --path /aws/service/global-infrastructure/regions/$REGION/services \
  --query 'Parameters[].Value' \
  --output text | grep -oP '[a-zA-Z0-9\-]+' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment