IT-Tips&Tricks

How to secure a BigQuery data warehouse that stores confidential data

This document is intended for data engineers and security administrators who deploy and secure data warehouses using BigQuery. It’s part of a security blueprint that’s made up of the following: A GitHub repository that contains a set of Terraform configurations and scripts. The Terraform configuration sets up an environment in Google Cloud that supports a data warehouse …

How to secure a BigQuery data warehouse that stores confidential data Read More »

S3 Copy Command

It’s just some quick command if you would like to copy to and from S3. aws s3 ls s3://mys3bucket/folder/subfolder/aws s3 cp s3://mys3bucket/folder/subfolder/testfile . aws s3 cp s3://mys3bucket/folder/subfolder . –recursive aws s3 cp –recursive s3://mys3bucket/folder s3://mys3target/folder There is also a good s3 copy command that you can use: https://github.com/aws-samples/amazon-s3-resumable-upload Note: If you would like to do …

S3 Copy Command Read More »

Checking whether your mail sent will go to spam folder?

Some references to it can be read from: https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-deliverability-dashboard-pipt.html Also, you can utilize https://mxtoolbox.com/MXLookup.aspx or other tool such as https://www.dmarcanalyzer.com/spf/checker/ Some tips are putting this on your DNS https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-authentication-spf.html Best,Doddi

Build AWS Environment to Comply PCI-DSS

These are some references to support the PCI-DSS comply: References Step by Step: https://aws-quickstart.s3.amazonaws.com/quickstart-compliance-pci/doc/standard-pci-dss-architecture-on-the-aws-cloud.pdf Source Code: https://github.com/aws-quickstart/quickstart-compliance-pci AWS Quickstart doc: https://aws.amazon.com/quickstart/architecture/compliance-pci/ Best Regards,Doddi Priyambodo