Serverless computing enables you to create and maintain applications and services without thinking about servers. It can be compared to a microservice or function as a service that is housed on a cloud computing platform. Azure Functions is a serverless application platform. It gives programmers the ability to host business…
List Resource groups & resources using Azure SDK for Python
A resource is an item that can be managed and is accessible through Azure. Examples of resources include virtual networks, virtual computers, storage accounts, web applications, and databases. A resource group is a container that contains connected resources. All the solution’s resources may be included in the resource group,…
Implementing AWS IAM using AWS python SDK boto3
Hey folks, you created an IAM user in the initial period in your AWS account. AWS users can be added, their rights can be managed, new policies can be made, and much more with the help of IAM (Identity & Access Management). In this article, you will learn how to…
Copy the Object from One Bucket to Another in AWS S3
Here, we are going to see how to copy an object from one bucket to another bucket within the same account using Python SDK.
Using python SDK to upload and download the local file into S3 bucket
This blog post will look at using the Python boto3 library to upload the local file into S3 bucket and download the file in S3 bucket to local file.
Creating and Deleting S3 Buckets using Boto3
In this blog, we will create and delete an S3 Bucket using Python SDK or Boto3. We will make use of the inbuilt functions from Boto3 to create and delete an S3 bucket. I’ll also be sharing tips for some error messages I encountered when working on this and these…
Provisioning VM in Azure using Azure Python SDK
We know the process of provisioning the VM in Azure manually by login into portal.azure.com. In this blog we will discusses about provisioning a new VM in Azure using Azure Python SDK and the steps involved in this process.
Host a Static Website on AWS with Python and S3
Ever needed to host a simple static website? Would you like to be able to create and upload the required files to S3 and never once touch the AWS console? With the python AWS SDK (software development kit), boto3, it is easy to configure an s3 bucket to host a…
Create Azure Virtual Machine Scale Sets
Back to Azure Virtual Machine Scale Sets Here is an excellent tutorial with more details to create an Azure virtual machine Scale set: Step 1: Connect to Azure account: The user should connect to his existing azure account using his valid credentials. Step 2: Search for the virtual machine scale sets using…
Introduction to Azure Virtual Machine Scale Sets
Hello! Here is some background information on it, as well as instructions on how to create virtual machine scale sets and scale sets with Python SDK. I’ve included the links further down the page. What is a Virtual Machine Scale Set (VMSS)? We may construct and manage several virtual machines…