<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Azure on Jhooq</title><link>https://jhooq.com/categories/azure/</link><description>Recent content in Azure on Jhooq</description><generator>Hugo -- gohugo.io</generator><copyright>Copyright © 2019–2020, Jhooq; all rights reserved.</copyright><lastBuildDate>Sat, 19 Jul 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://jhooq.com/categories/azure/index.xml" rel="self" type="application/rss+xml"/><item><title>Azure Function App</title><link>https://jhooq.com/azure-function-app/</link><pubDate>Sat, 19 Jul 2025 00:00:00 +0000</pubDate><guid>https://jhooq.com/azure-function-app/</guid><description>
Table of Content HTTP Trigger Azure Function App Timer-Triggered Azure Function App Azure Queue Storage Trigger Azure Function App Authentication using Azure Entra ID How to Deploy an Azure HTTP Trigger Function App Using Python and the Azure CLI Azure Function Apps offer a powerful serverless compute option that allows developers to execute code in response to events—without managing infrastructure. In this step-by-step guide, we'll walk you through deploying an Azure Function App using Python, from local development to cloud deployment, using the Azure CLI and the Azure Functions Core Tools.</description></item><item><title>Azure Virtual Machine Course</title><link>https://jhooq.com/azure-master-course-vm/</link><pubDate>Mon, 17 Feb 2025 00:00:00 +0000</pubDate><guid>https://jhooq.com/azure-master-course-vm/</guid><description>
Table of Content Terraform Code for Azure Virtual Machine Azure Course Slides 1. Terraform Code for Azure Virtual Machine 1## main.tf 23resource &amp;#34;azurerm_linux_virtual_machine&amp;#34; &amp;#34;dev_eu_north_ubuntu_vm&amp;#34; { 4name = &amp;#34;dev-eu-north-ubuntu2204-vm&amp;#34; 5resource_group_name = azurerm_resource_group.dev_eu_north_rg.name 6location = azurerm_resource_group.dev_eu_north_rg.location 7size = &amp;#34;Standard_F2&amp;#34; 8admin_username = &amp;#34;rahulwagh&amp;#34;9#admin_password = &amp;#34;G&amp;lt;7€YraRgk_7lnksE}yu37`Fe&amp;#34; 10 disable_password_authentication = true 11admin_ssh_key { 12username = &amp;#34;rahulwagh&amp;#34; 13public_key = file(&amp;#34;/Users/rahulwagh/.ssh/dev-vm-ssh-key-pair.pub&amp;#34;) 14} 1516network_interface_ids = [ 17azurerm_network_interface.dev_eu_north_nic.id, 18] 1920os_disk { 21caching = &amp;#34;ReadWrite&amp;#34; 22storage_account_type = &amp;#34;Standard_LRS&amp;#34; 23} 2425source_image_reference { 26publisher = &amp;#34;Canonical&amp;#34; 27offer = &amp;#34;0001-com-ubuntu-server-jammy&amp;#34; 28sku = &amp;#34;22_04-lts&amp;#34; 29version = &amp;#34;latest&amp;#34; 30} 31} 3233resource &amp;#34;azurerm_network_interface&amp;#34; &amp;#34;dev_eu_north_nic&amp;#34; { 34name = &amp;#34;dev-eu-north-nic&amp;#34; 35location = azurerm_resource_group.</description></item></channel></rss>