Summary: In this blog we will discuss about Provisioning Virtual Machine and few other components in Azure using Python SDK, instead of creating them from Azure portal. Installing Azure CLI and building a Virtual Environment in VS Code To build out a resource group to house the virtual machine and…
How to Upload File to S3 using Python AWS Lambda
Lambda runs your code on a high-availability compute infrastructure and performs all of the administration of the compute resources, including server and operating system maintenance, capacity provisioning and automatic scaling, and logging. Three components of AWS Lambda: A function. This is the actual code that performs the task. A configuration.…
AWS SQS using Boto3
What is AWS SQS? Aws SQS stands for Simple Queue Service. This Service provides the customer with a fully managed queue for storing messages as they travel between different applications or microservices. And enables you to decouple and scale distributed systems, and serverless applications. This service is very popular among…
Blog 3: AWS IoT cloud services
In this blog, we are going to learn about IoT services provided by Amazon Cloud Services. Introduction Internet of Things(IoT): Before getting to know about IoT services of AWS we must understand what IoT means. The term “Internet of things” (IoT) refers to physical objects (or groups of such objects)…
Azure Kubernetes Service (AKS)
What is Kubernetes? Kubernetes is a portable, adaptable open-source framework for containerized workload deployment, scaling, and management. Kubernetes abstracts away difficult container management and gives us declarative configuration to orchestrate containers in various computing environments. We have the same flexibility and convenience of use with this orchestration platform as we…
HTPP trigger to Azure Storage Queue
Introduction Azure Functions is an on-demand serverless cloud compute service that provides all of the constantly updated infrastructure and resources required to run your applications. This service allows users to run event-triggered code without the need for infrastructure provisioning or management. As a trigger-based service, it executes a script or code in…
Azure Logic Apps to create an automated workflow to implement RSS feed of a website to email account.
Summary: In this blog we are going to create an automated workflow that integrates two services, an RSS feed for a website and an email account using Azure Logic Apps. What is Azure Logic Apps? Azure Logic Apps offers low-code/no-code tools for you to create highly scalable integration solutions for…
Scheduling AWS Lambda Functions by configuring the CloudWatch Events, monitoring through CloudWatch Metrics and CloudWatch Logs.
The blog deals with the concepts of AWS Lambda function trigger by configuring the CloudWatch(EventBridge) events.
Azure File Share: Basic Management with Python SDK
Within Azure, file shares (fileshares) are one of the two chief systems of cloud storage, the other being blob storage. This guide will walk through an example of how the Python SDK can be used to manage your files in an Azure file share. We will walk through a Python…
Timer Trigger Operation ⏲️
Objective: To understand the working of Timer Trigger. In addition to building and invoking a python function schedule to print every 15s. Prerequisite: Python 3.8 – Python 3.10 (Python 3.11 is not supported yet.) Azure Core Tools – Download azure core tools from here VS Code Step 1: Open VS…