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

Advertisement

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

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?