How to Resize an AWS EBS Volume in Bash
If you need to resize an EBS volume in AWS, you can do so using bash.
Step 1 – Create a bash file
Create a bash file called resize.sh:
#!/bin/bash …
Read Article →
159 articles about aws development, tools, and best practices
If you need to resize an EBS volume in AWS, you can do so using bash.
bash fileCreate a bash file called resize.sh:
#!/bin/bash …
Read Article →
AWS CodeCommit is a git code repository service by Amazon Web Services.
You will want to clone your repository and setup your remotes using credential …
Sometimes you will need to manually approve a SageMaker model package from the AWS CLI.
aws sagemaker …
Read Article →
If you need to assume role between AWS accounts, or allow an account to assume a role and use resources in another AWS account, then you need to …
Read Article →If you need to recursively delete all files in an AWS S3 bucket, then you can do the following:
aws s3 rm --recursive s3://your-bucket-name/foo/bar/ …
Read Article →
When you are trying to create an RDS database and you get the dreaded error message:
IAM role ARN value is invalid or does not include the required …
The following code expects a python file with the contents as follows in a file called python/script1.py:
def …
Read Article →
If you get the Instance Profile already exists error when running your Terraform apply, then it is either because an instance profile with that name …
If you are using aws configure sso to populate your ~/.aws/credentials file and you get the following error when you try and reauthorize, then you can …
If you want to invoke an AWS Lambda from your CLI, then the best option is to have the AWS CLI installed.
Getting started with the AWS CLI – AWS …!-->
Read Article →If you find yourself having the requirements to support both AWS CLI v1 and v2 simultaneously, then you can use the following conditional in Bash to …
Read Article →If you have tried calling the AWS CLI and got the following error:
Unknown options: --cli-binary-format
Then it is because you are using the AWS CLI …