-
How to use the AWS RDS free tier?
AWS provides the RDS Free Tier as part of the AWS Free Tier to help new customers get started with a managed database service for free. You can choose from any of the database engines that RDS supports:
- MySQL
- PostgreSQL
- MariaDB
- Oracle
- SQL Server
-
What are the differences between IAM roles and IAM policies?
AWS Identify and Access Management (IAM) provides fine-grained permissions to AWS services and resources.
In this article, we will take a closer look at the following IAM concepts:
- Roles
- Policies
-
What are the differences between AWS Secrets Manager and KMS?
What is AWS Key Management Service (KMS)?
AWS Key Management Service (KMS) is a foundational AWS service that can create and manage cryptographic keys. KMS provides a single control point from where you can manage your keys.
KMS keys have a lot of applications across various AWS services like:
-
AWS S3: cp vs sync
Introduction
Two commands in the AWS S3 CLI that can be confusing to differentiate are
cp
andsync
. These commands have similar descriptions, and many developers use them interchangeably without understanding the differences.This article will list the key differences between the two commands.
-
How to copy files recursively using AWS S3 cp?
Introduction
AWS S3 cp provides the ability to:
- Copy a local file to S3
- Copy S3 object to another location locally or in S3
If you want to copy multiple files or an entire folder to or from S3, the
--recursive
flag is necessary. The official description of the recursive flag is:Command is performed on all files or objects under the specified directory or prefix.