Articles by Rahul Shivalkar
-
How to use Cloudformation to create an EC2 instance
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Jan 14, 2021In this article, we will create an EC2 instance with the latest Linux AMI using Cloudformation hence knowing the basics of cloud formation is required.
-
How to create Cloudwatch alarms for an S3 Bucket on AWS
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Jan 13, 2021Cloudwatch provides Storage Metrics and Request Metrics for S3 Buckets. Storage Metrics come up with no extra cost and provided once a day whereas Request Metrics are available at 1-minute intervals and incur charges.
-
How to recover AWS account access if the MFA device is lost
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Jan 11, 2021It is recommended to enable Multifactor Authentication (MFA) for your AWS account. MFA is used to secure your AWS account, it adds an extra layer of security to the account. This guide shows you how to access your account when the 2nd-factor device is lost.
-
-
How to use Cloudformation to create an SNS topic on AWS
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Jan 08, 2021AWS SNS is a Simple Notification Service. It can be used by Cloudwatch to send alert emails. In this article, we will create an SNS topic using Cloudformation and subscribe to an email endpoint.
-
Getting started with GIT on Linux
Author: Rahul Shivalkar • Tags: linux, programming • Comments: 0 • Published: Jan 06, 2021Git is a distributed version control system. It is used for tracking changes in any files. It was designed for coordinating work among programmers operating on source code during the software development process. In this article, I will show you the commands to perform basic operations on a Git repository.
-
How to setup Elastic Container Service (ECS) on AWS
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Dec 29, 2020Elastic Container Service is a fully managed container orchestration service provided by AWS. In this article, we will create an ECS cluster and deploy a sample Nginx application onto it. We will create a test cluster to understand the cluster setup. You are advised to set up a production cluster with a customized configuration as per the requirement.
-
How to create an inventory configuration in S3
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Dec 23, 2020In this article, we will create an inventory configuration to store object metadata in CSV format. We can store reports in the same bucket as the source bucket, but we will use a different bucket to store this than the bucket for which we will be creating this inventory configuration.
-
How to use Cloudformation to create an S3 bucket
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Dec 21, 2020There are multiple ways in which you can create an S3 bucket on AWS. Cloud formation is one of the Infrastructure as Code (IaC) ways to do this. In this article, we will explore several options available in Cloudformation to create an S3 bucket.
-
How to secure your AWS account by enabling Multi-Factor Authentication
Author: Rahul Shivalkar • Tags: cloud • Comments: 0 • Published: Dec 17, 2020In this article, we will see the steps to enable Multi-factor Authentication using a virtual device. A virtual Multi-factor Authentication device is nothing but an application or software running on your phone. This application generates a six-digit code that needs to be entered while logging into the account.
-
Create and Store Secrets like Passwords, OAuth Tokens, and SSH Keys in Kubernetes
Author: Rahul Shivalkar • Tags: cloud, linux, virtualization • Comments: 0 • Published: Dec 16, 2020In Kubernetes, we can store and manage sensitive information, such as passwords, OAuth tokens, and ssh keys using Kubernetes Secrets. In this article, we will create secrets using .yml file and access them in the Pod as Environment Variables.