Cheatsheets:
programming:
How-to:
Troubleshooting:
Rants:
Other:
Cheatsheets:
programming:
How-to:
Troubleshooting:
Rants:
Other:
$ aws configure --profile prod-core
$ aws --profile prod-core <command> <subCommand>
$ aws --profile prod-core <command> <subCommand>
$ aws --profile prod-core iam list-roles > aws_available_iam_roles.json
$ aws iam get-role --role-name some-role-name > some-role-name.json
$ aws s3 sync . s3://kamaradski.com --exclude ".git" --exclude "_Store" --exclude "*.md"
$ aws ssm put-parameter \
--name "item-name" \
--type "SecureString" \
--value "item-content" \
--overwrite \
--profile stage-core
$ aws lightsail get-blueprints > available_blueprints.json
$ aws lightsail get-bundles > available_bundles.json