AWS on
Profile picture
amaan-ngp
Loading...

Continious AWS IAM Security Practices


#security #aws #p #postgres

Show More
Loading...

Inherited AWS Account best practices


#aws #p #security

Show More
Loading...

AWS Access Keys - A reference (Must Read)


#aws #security #p

Show More
Loading...
Advanced AWS Networking: Pitfalls That You Should Avoid


#aws #networking


Show More
Loading...
Loading...

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

Show More
Loading...
Loading...

AWS Organizations best practices! A must read!


#aws #security #p

Show More
Loading...

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


#p #aws #cost-optimization #savings

Show More
Loading...

Security Extension to check for AWS Credentials in JS


#aws #security #p

Show More
Loading...

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
Loading...

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
Loading...

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

Show More
Loading...

Transfer hosted zone between AWS Accounts


#aws #p

Show More
Loading...

Migrating Route53 records to a different account


#aws #p

Show More
Loading...
Loading...

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

Show More
Loading...

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.