aws-install:
    # https://docs.aws.amazon.com/cli/latest/userguide/getting-started-version.html
    # https://github.com/aws/aws-cli/tags
    curl "https://awscli.amazonaws.com/AWSCLIV2-2.13.11.pkg" -o "AWSCLIV2.pkg"
    sudo installer -pkg AWSCLIV2.pkg -target /

aws-profile-create:
    aws configure --profile=hm
    # AWS Access Key ID: xxx
    # AWS Secret Access Key: xxx
    # Default region name: us-west-2
    # Default output format:

aws-sso-configure:
    aws configure sso

aws-sso-sign-in:
    aws sso login --profile=hm

aws-profile-list:
    aws configure list-profiles

aws-profile-show:
    aws configure list --profile=hm

aws-credentials-show:
    cat ~/.aws/credentials

aws-service-quotas-service-list:
    aws service-quotas list-services --no-cli-pager

aws-service-quotas-service-quotas-list:
    aws service-quotas list-service-quotas --service-code=glue --no-cli-pager
    aws service-quotas list-service-quotas --service-code=databrew --no-cli-pager
