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…
Category: Virtual Machines
Articles about cloud virtual machines and how to work with them.
What is Azure Bastion and How to create it.
Introduction: Hello! In this blog, I will be explaining a detailed article on Azure Bastion and How to create azure bastion. I’m sure you’re familiar with RDP and SSH if you manage a remote server or virtual machine. RDP and SSH are both used to gain remote access to virtual…
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,…
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.
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…
Using Python to Manage EC2 Instances
This blog post will look at using the Python boto3 library to manage EC2 instances.
Creating an SSH key pair
Back to reset SSH public key Open a Windows Command Prompt (Search –> cmd — Command Prompt). Then, On Windows, in the event that you paste the above to the clipboard and, right-click on the command prompt, the command will be pasted in and you can simply press enter to…
Managing SSH Key Pairs
This post looks at why managing SSH Key Pairs is important and the different strategies that can be used.
Reset SSH public key
Back to the main page How to reset the SSH public key? Step 1: Generate a new SSH key pair using SSH-keygen Step 2: Connect to Azure account: The user should connect to his existing azure account using his valid credentials. Step 3: Selecting the Virtual machine button: After success…