| Name | Comments |
|---|
| Cloud Mapper | "analyze your Amazon Web Services (AWS) environments"" |
| EC2 Instances Info | "Easy Amazon EC2 Instance Comparison" |
| amazon-redshift-utils | "Contains utilities, scripts and view which are useful in a Redshift environment" |
| Cloudcraft | Automated AWS diagram mapping of your cloud resources. |
| nOps | "for fast-moving DevOps teams helping them ... monitor, analyze, and manage provisioned cloud workloads.", Not Free. |
| EC2Instances.info | "Easy Amazon EC2 Instance Comparison" |
| Name | Comments |
|---|
| terraformer | "A CLI tool that generates tf/json and tfstate files based on existing infrastructure (reverse Terraform)." |
| terraforming | "Export existing AWS resources to Terraform style (tf, tfstate)" |
- Set up MFA
- Delete root account access keys
- Create IAM users instead of using root for daily management
- List users:
aws iam list-users
- List instances:
aws ec2 describe-instances
- Remove security group rules:
aws ec2 revoke-security-group-ingress \
--group-name someHTTPSecurityGroup
--protocol tcp \
--port 80 \
--cidr 0.0.0.0/0`
- Add security group rules:
aws ec2 authorize-security-group-ingress \
--group-name someHTTPSecurityGroup
--protocol tcp \
--port 80 \
--cidr 0.0.0.0/0
- Encryption in PostgreSQL:
rds.force_ssl=1 (parameter groups)
- Encryption in MySQL:
GRANT USAGE ON *.* TO 'mysqluser'@'%' REQUIRE SSL;