Configure a network access to VM by using a network security group (NSG) with Azure CLI
Tag: cloud
Azure Series Part 1: Creating resource groups in Microsoft Azure
A resource group is a container that contains different resources in your in your Azure account. You can add any kind of resources you want to manage under one resource group. You can create a resource group based of your orgs preferences. It would be meaningful to create a resource group based on region as … Continue reading Azure Series Part 1: Creating resource groups in Microsoft Azure
Creating AWS resources in four ways using AWS Console, CLI, CloudFormation and Terraform!
This blog post will show you how to create an S3 bucket in AWS using four ways using AWS Management Console, AWS Cloudformation and Terraform! Let us begin! First Way: Directly using S3 Management Console Go to AWS management console > Go to S3 Service Click on create bucket button and provide details for the … Continue reading Creating AWS resources in four ways using AWS Console, CLI, CloudFormation and Terraform!
Terraform Setup on Windows to create AWS resources
Let us see how can we setup Terraform CLI on Windows and create some resouces on AWS cloud. Step 1: Download terraform from https://www.terraform.io/downloads.html Step 2: Unzip the file and place it in desired location Step 3: Set path in System Environment Variables Step 4: Test the installation CMD prompt Step 5: Configuring and Creating … Continue reading Terraform Setup on Windows to create AWS resources
What exactly is a container? Explained!
Container is a unit of software that provides a standard way to package up application code and all its dependencies and configurations in a single unit so the application runs quickly and reliably from one computing environment to another.
How to prepare for AWS CDA(June 2018)?
AWS released new revamped version of AWS Certified Developer Associate (CDA) Exam during June. They have announced that previous version will not available after November, 19. I recently passed the exam and I will be sharing what I did to pass the exam and how much time it took me to get exam ready. Cost … Continue reading How to prepare for AWS CDA(June 2018)?
CI/CD Pipeline with GitLab
With Auto DevOps in GitLab, It will automatically build, test, and deploy your application based on a predefined CI/CD configuration. To create a CI/CD pipeline here are pre requisites: GitLab account Git and Source code management basic knowledge Google cloud account for Kubernetes cluster Step-1) Create a project from a template in GitLab or you can … Continue reading CI/CD Pipeline with GitLab
How create a serverless website using AWS Lambda, AWS S3, AWS API Gateway and AWS DynamoDB with node.js? Full Tutorial!
This post will show you how we can create a web site using AWS serverless architecture. Architecture The architecture would look something like below: The services and technologies we will be using to build this application are: AWS Lambda AWS Lambda is a compute service that lets you run code without provisioning or managing servers. AWS … Continue reading How create a serverless website using AWS Lambda, AWS S3, AWS API Gateway and AWS DynamoDB with node.js? Full Tutorial!
How to deploy your static website on AWS using AWS S3 and AWS Route 53?
This post will show how can you deploy your static web application i.e basically html-css based app on AWS. You need know about the two important AWS services like AWS S3 and AWS Route 53. Below is the structure of a basic html web page: Let us upload the above web file into AWS S3. … Continue reading How to deploy your static website on AWS using AWS S3 and AWS Route 53?
How to deploy your node.js web application with AWS Beanstalk?
This post will show you how we can quickly create a node.js web aplication based on express framework and how to deploy that application on AWS using AWS BeanStalk service. Now first you need to know what is AWS BeanStalk? Some information about AWS BeanStalk: AWS BeanStalk is the fastest and simplest way to deploy … Continue reading How to deploy your node.js web application with AWS Beanstalk?
AWS: Creating your first S3 Bucket!
AWS S3 stands for Simple Storage Service. S3 is object storage which allows you to upload files. The max files size that can be stored is 5TB. The files can be stored in a structure called buckets. A bucket is your root resource in which you add, delete or modify objects. Your bucket name should … Continue reading AWS: Creating your first S3 Bucket!