​AWS credentials​
​Docker​
​Cortex CLI​
​AWS CLI​
# spin down the clustercortex cluster down​# uninstall the CLIsudo rm /usr/local/bin/cortexrm -rf ~/.cortex
If you modified your bash profile, you may wish to remove source <(cortex completion).
# set AWS credentialsexport AWS_ACCESS_KEY_ID=***export AWS_SECRET_ACCESS_KEY=***​# delete the S3 bucketaws s3 lsaws s3 rb --force s3://<bucket-name>​# delete the log groupaws logs describe-log-groups --log-group-name-prefix=<log_group_name> --query logGroups[*].[logGroupName] --output text | xargs -I {} aws logs delete-log-group --log-group-name {}