AWS on
Profile picture
amaan-ngp

Continious AWS IAM Security Practices


#security #aws #p #postgres

Show More

Inherited AWS Account best practices


#aws #p #security

Show More

AWS Access Keys - A reference (Must Read)


#aws #security #p

Show More
Advanced AWS Networking: Pitfalls That You Should Avoid


#aws #networking


Show More

AWS Cloudformation retrying/rollback resources to a previous good state #aws #cloudformation #p

Show More

AWS Organizations best practices! A must read!


#aws #security #p

Show More

Save Costs on AWS!! Lovely trick, believe me worth a watch !


#p #aws #cost-optimization #savings

Show More

Security Extension to check for AWS Credentials in JS


#aws #security #p

Show More

List AWS Cloudwatch loggroup size with AWS CLI


aws logs describe-log-groups --query "logGroups[*].{LogGroup:logGroupName,VolumeSize:storedBytes,RetentionInDays:retentionInDays} | reverse(sort_by(@, &VolumeSize))" --output table --profile $profile --region $region


#aws #bash-productivity #p

Show More

Combine multiple AWS IAM Polices into a single policy set. Useful if you need to deal with multiple AWS Policies (AWS/Local) #aws #iam #security #p

Show More

Generate graphql based cloud inventory, cloud costing and security compliance querying with graphql data. #aws #security #p

Show More

Transfer hosted zone between AWS Accounts


#aws #p

Show More

Migrating Route53 records to a different account


#aws #p

Show More

Postgres RDS Storage Autoscaling factors/considerations & limitations #postgres #databases

Show More

Postgres SSL settings #postgres #security #databases

Show More

Highlights

Requiring an SSL connection to a PostgreSQL DB instance You can require that connections to your PostgreSQL DB instance use SSL by using the rds.force_ssl parameter. By default, the rds.force_ssl parameter is set to 0 (off). You can set the rds.force_ssl parameter to 1 (on) to require SSL for connections to your DB instance. Updating the rds.force_ssl parameter also sets the PostgreSQL ssl parameter to 1 (on) and modifies your DB instance's pg_hba.conf file to support the new SSL configuration. You can set the rds.force_ssl parameter value by updating the parameter group for your DB instance. If the parameter group for your DB instance isn't the default one, and the ssl parameter is already set to 1 when you set rds.force_ssl to 1, you don't need to reboot your DB instance. Otherwise, you must reboot your DB instance for the change to take effect. For more information on parameter groups, see Working with DB parameter groups.