AWS

Hacker hands using laptop computer to code

AWS API Gateway custom domain in Cloudflare

Reading Time: 3 minutes Cloudflare is basically one of the largest networks of edge servers and millions of websites use Cloudflare DNS to host their website. It is very easy to use and get started. Cloudflare is a large network of servers that can improve the security, performance, and reliability of anything connected to the Internet. In this blog, we will dive deep into how we can provide a custom domain name Continue Reading

Developing programming and coding technologies working in a software engineers.

How Caching and Invalidations in AWS CloudFront works

Reading Time: 3 minutes In my previous blog, We have talked about What is CloudFront with its works and in this blog, we will learn how CloudFront Caching and Invalidations works. CloudFront Caching Reducing the number of requests to our origin server directly is one of the goals of using CloudFront. Due to CloudFront caching, more objects are served from CloudFront edge locations, which are nearer to users. This Continue Reading

AWS CloudFront – A Quick Overview!!

Reading Time: 3 minutes In this blog, we’ll learn what is CloudFront with its working Demo. So, let’s get started. Amazon CloudFront is a web service that speeds up the distribution of our static and dynamic web content, such as .html, .css, .js, and image files, to our users. Our content is delivered by CloudFront through a global network of data centers known as edge locations. When a user Continue Reading

How to Setup S3 Trigger with AWS Lambda ?

Reading Time: 3 minutes What is AWS Lambda? In Aws, we can run code using the computation service Lambda without setting up or maintaining servers. In essence, this suggests that AWS Lambda development may be done with no concern for setting up servers or other infrastructure. When data in an Amazon S3 bucket or an Amazon DynamoDB table changes, for example, your code can be launched in response using Continue Reading

terraform

How to create a VPC & Subnet in AWS using Terraform

Reading Time: 3 minutes Let’s create a VPC and subnet in AWS using Terraform. What is Terraform? Terraform is an infrastructure as a code solution from HashiCorp, It enables you to specify cloud and on-premises resources in human-readable configuration files that you can reuse, distribute, and version. Prerequisite: Vpc (Virtual Private Cloud): A Virtual Private Cloud (VPC) is an isolated, secure private cloud hosted on the public cloud as Continue Reading

AWS Fargate and How to create task definition,cluster and service

Reading Time: 5 minutes Introduction Hello readers, I’ll be covering about the details of AWS Fargate which is a compute engine for Amazon Elastic container service but before it let’s take a look at topics that we’ll be discussing in this blog.Firstly we’ll discuss Fargate,need for Fargate,how it works,few key concepts that you must know when you are dealing with Fargate and finally we’ll see the demo how to Continue Reading

close up photo of programming of codes

How to make a Serverless Application Model in AWS

Reading Time: 4 minutes In this blog, we’ll learn how to create, build, and test a serverless application model using the CLI. So, let’s get started. The AWS Serverless Application Model (SAM) is an open-source framework for developing serverless applications on Amazon Web Services. It allows us to express functions, APIs, databases, and event source mappings using shorthand syntax. We can define and model our application using YAML with Continue Reading

Expertise Augmentation

How Google Istio is different from AWS App Mesh?

Reading Time: 4 minutes Hello readers, so before going into the difference between AWS App Mesh and Google Istio, initially we should know what is a Service Mesh. The concept of service has risen over a couple of years and we have a lot of alternatives. We have a number of options to choose from, i.e. Linkerd by Buoyant Envoy by Lyft Istio was Initially by Lyft, IBM, Google Continue Reading

photo of turned on laptop computer

How to make WebSocket API with Amazon API Gateway

Reading Time: 4 minutes We’ll learn how to make Websocket API with API Gateway in this blog. Let’s start with a quick overview of APIs. What is an API? API stands for Application Programming Interface, and it is a software intermediary that allows two applications to communicate with one another. What is a WebSocket API? In API Gateway, a WebSocket API is a set of WebSocket routes that are Continue Reading

data codes through eyeglasses

How to Make a REST API Using API Gateway

Reading Time: 6 minutes We’ll learn how to make a REST API with API Gateway in this blog. Let’s start with a quick overview of APIs. What is an API? API stands for Application Programming Interface, and it is a software intermediary that allows two applications to communicate with one another. What is an AWS API? Amazon API Gateway is a fully managed service that makes it easy for Continue Reading

How to deploy an S3 Bucket in AWS- using Terraform

Reading Time: 3 minutes In this blog, we will create a Terraform Script for deploying an s3 bucket in AWS. S3 bucket is a simple storage service in the AWS cloud. It allows to store and access any amount of data. It stores all the data as objects, that is, it is an object-based storage service. Using a terraform script, the entire infrastructure can be managed by declaring all Continue Reading

rancher eks

How to deploy Rancher on the EKS cluster using Helm?

Reading Time: 3 minutes Hey readers, so today we’ll see how can we deploy Rancher on the EKS cluster using Helm. Firstly we’ll create an EKS cluster on AWS using Terraform and then we’ll deploy Rancher on EKS using Helm charts. So for that, we’ll be requiring some prerequisites. An AWS account with admin privileges AWS CLI on the local system Configured CLI with the respective AWS account Terraform Continue Reading

aws

How to create an EventBridge application in python

Reading Time: 3 minutes Hello Readers!!! In this article, we will see how we can create an eventbridge application in python. First we will see create a python application that will send custom events to eventBridge. Then if rule matches, target will be invoked which would be lambda function in our case. And lambda will prints the event details in the cloud watch. Create an eventbridge project : 1.First Continue Reading