In this article, we will look into what really goes on underneath the covers as we demystify Cloud shell in the Azure Cloud Shell. It is an interactive, in-browser shell environment. It has two different shell experiences, either Bash or PowerShell. It lets you manage Azure resources, and it has many other…
Azure DDoS Protection: Protecting Cloud Resources from Distributed Denial of Service
Azure DDoS (Distributed Denial of Service) protection is a security feature offered by Microsoft Azure to protect websites and applications hosted on the Azure platform from DDoS attacks. DDoS attacks are a type of cyber attack in which the attacker attempts to overwhelm a website or application with traffic from…
Azure function with an HTTP trigger
In this blog we will learn how to Create the Http Trigger Azure Function in Azure Portal. What is an Azure Function? Azure Functions is a serverless computing service, hosted in the Microsoft Azure public cloud. It was designed to speed up and simplify application development. The cloud provider handles…
AWS: Backup and Restoring
This post will serve as a detailed how-to guide for backing up and restoring your data using AWS Backup and going through all of the steps involved in running backups using the AWS web console. Step-By-Step Guide to Backing Up Your Resources Creating a Backup Vault Before backing up your…
Using Python SDK to create & insert queries in Azure MySQL database
The blog provides the concept of creating database and inserting data into Azure MySQL with PythonSDK.
Creating an Azure Virtual Machine Scale set using Python SDK
Back to Azure Virtual Machine Scale Sets Prerequisites for Creating an Azure VMSS: Before creating an Azure VMSS through Python SDK we need to do a few following steps. Create an azure account in the Azure portal. Install Visual Studio code on your local pc. After finishing the above step,…
Building a Static Website using Route 53 & S3 🛣️
AWS Services Involved: Amazon S3 CloudFront Lambda@Edge Route 53 Objective: Register a domain and build a static website in order to understand the network traffic and beginner core-level project. Brief Definitions: Amazon S3 – Creates an Amazon S3 bucket to host your static website. CloudFront – is a delivery system…
Managing Amazon SNS topic subscription using Boto3
<–Working with Amazon SNS in Python using Boto3 SDK Before sending a message to consumers, we need to subscribe them to the topic (phone number, email, HTTP/S Endpoint, Lambda, or SQS). Create an Amazon SNS subscription To subscribe to an Amazon SNS web service topic programmatically, you need to use…
Managing Amazon SNS topics using Boto3
<–Working with Amazon SNS in Python using Boto3 SDK The primary purpose of a publish/subscribe system is to allow message distribution from the application or service to many possible destinations. The source application is sending a message to a topic. Destination applications or services are subscribed to the topic and receive…
Working with Amazon SNS in Python using Boto3 SDK
This blog will show you how to use Python and the Boto3 module to connect with Amazon SNS in order to create, describe, list, and delete SNS topics as well as send messages to them. Amazon Simple Notification Service (Amazon SNS) is a highly available, secure, and fully managed Publisher-Subscriber (pub/sub)…