August 17, 2022
#AWS
If you are running a GlueJob
in AWS and get the following error:
An error occurred while calling o86.getDynamicFrame. Exception thrown in awaitResult: …
Read Article →
August 16, 2022
#AWS
The AWS Cloud Development Kit (CDK) comes with a list of commands that you need to know: …
Read Article →
August 14, 2022
#AWS
If you need to see a list of all the resources in your AWS Account, then you need to look into the Tag Editor
.
Step 1 – Tag Editor
Search for Tag …
Read Article →
July 27, 2022
#AWS
#CLI
#Linux
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 →
July 25, 2022
#AWS
#CLI
#Mac
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 …
Read Article →
July 17, 2022
#AWS
#CLI
Sometimes you will need to manually approve a SageMaker model package from the AWS CLI.
Step 1 – Get a list of the available packages
aws sagemaker …
Read Article →
July 16, 2022
#AWS
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 →
July 5, 2022
#AWS
#CLI
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 →
June 28, 2022
#AWS
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 …
Read Article →
June 27, 2022
#AWS
#Python
#Terraform
Step 1 – Lambda Code in Python
The following code expects a python file with the contents as follows in a file called python/script1.py
:
def …
Read Article →
June 26, 2022
#AWS
#CLI
#Terraform
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 …
Read Article →
June 25, 2022
#AWS
#CLI
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 …
Read Article →