3 min read
When we are working with IAM roles, it's essential to make sure that the permissions we are granting exactly what we need: No more, no less.
The AWS SDK provides a way to check what privileges are being used by a role, group, or user. This can help us to fine-tune the permissions we are granting and remove any unnecessary privileges.
07/10/2024
Read more...2 min read
AWS Systems Manager (SSM) Parameter Store is a service that helps you centralize and manage these configurations, secrets, and parameters without hardcoding sensitive information in your application code.
18/09/2024
Read more...2 min read
With the .aws/config
and .aws/credentials
files we can are used for configuring and authenticating for the AWS cli or any tool that uses the AWS SDK with AWS.
Each file has a different purpose:
~/.aws/config
: This file stores configuration settings for AWS CLI and SDKs, including profiles, regions, output format, and roles to assume.~/.aws/credentials
: This file holds AWS access key IDs and secret access keys.04/09/2024
Read more...1 min read
The AWS CLI is a command line interface for interacting with AWS services. To install it in an Alpine-based container we can use pip instead of going thru all the trouble of downloading a zip and install it by running some script.
09/02/2023
Read more...2 min read
On a running instance we might want to be able to identify whether it is a spot or on demand instance. We can use awscli to identify it
23/05/2022
Read more...