Created
September 24, 2024 18:59
-
-
Save KefDS/46350ec11efe314cfa9df4fb0703d4c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "adminUsername": { | |
| "value": "student" | |
| }, | |
| "adminPassword": { | |
| "value": "Password123!" | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "location": { | |
| "type": "string", | |
| "defaultValue": "[resourceGroup().location]", | |
| "metadata": { | |
| "description": "Location of resources." | |
| } | |
| }, | |
| "vmSize": { | |
| "type": "string", | |
| "defaultValue": "Standard_DS1_v2", | |
| "metadata": { | |
| "description": "Size of the Virtual Machine." | |
| } | |
| }, | |
| "adminUsername": { | |
| "type": "string", | |
| "metadata": { | |
| "description": "Admin username for the virtual machine." | |
| } | |
| }, | |
| "adminPassword": { | |
| "type": "securestring", | |
| "metadata": { | |
| "description": "Admin password for the virtual machine." | |
| } | |
| } | |
| }, | |
| "variables": { | |
| "networkSecurityGroupName": "nsg-vm", | |
| "networkSecurityGroupName2": "nsg-subnet", | |
| "publicIPAddressName": "vmPublicIP", | |
| "vNetName": "vnet-vm", | |
| "vNetAddressPrefixes": "10.0.0.0/16", | |
| "vNetSubnetName": "subnet-vm", | |
| "vNetSubnetAddressPrefix": "10.0.0.0/24", | |
| "networkInterfaceName": "nic-vm", | |
| "vmName": "vm-ubuntu" | |
| }, | |
| "functions": [], | |
| "resources": [ | |
| { | |
| "type": "Microsoft.Network/networkSecurityGroups", | |
| "apiVersion": "2023-11-01", | |
| "name": "[variables('networkSecurityGroupName')]", | |
| "location": "[parameters('location')]", | |
| "properties": { | |
| "securityRules": [ | |
| { | |
| "name": "ssh_rule", | |
| "properties": { | |
| "description": "Locks inbound down to ssh default port 22.", | |
| "protocol": "Tcp", | |
| "sourcePortRange": "*", | |
| "destinationPortRange": "22", | |
| "sourceAddressPrefix": "*", | |
| "destinationAddressPrefix": "*", | |
| "access": "Allow", | |
| "priority": 123, | |
| "direction": "Inbound" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Microsoft.Network/publicIPAddresses", | |
| "apiVersion": "2023-11-01", | |
| "name": "[variables('publicIPAddressName')]", | |
| "location": "[parameters('location')]", | |
| "properties": { | |
| "publicIPAllocationMethod": "Dynamic" | |
| }, | |
| "sku": { | |
| "name": "Basic" | |
| } | |
| }, | |
| { | |
| "comments": "Simple Network Security Group for subnet [variables('vNetSubnetName')]", | |
| "type": "Microsoft.Network/networkSecurityGroups", | |
| "apiVersion": "2023-11-01", | |
| "name": "[variables('networkSecurityGroupName2')]", | |
| "location": "[parameters('location')]", | |
| "properties": { | |
| "securityRules": [ | |
| { | |
| "name": "default-allow-22", | |
| "properties": { | |
| "priority": 1000, | |
| "access": "Allow", | |
| "direction": "Inbound", | |
| "destinationPortRange": "22", | |
| "protocol": "Tcp", | |
| "sourceAddressPrefix": "*", | |
| "sourcePortRange": "*", | |
| "destinationAddressPrefix": "*" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Microsoft.Network/virtualNetworks", | |
| "apiVersion": "2023-11-01", | |
| "name": "[variables('vNetName')]", | |
| "location": "[parameters('location')]", | |
| "dependsOn": [ | |
| "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName2'))]" | |
| ], | |
| "properties": { | |
| "addressSpace": { | |
| "addressPrefixes": [ | |
| "[variables('vNetAddressPrefixes')]" | |
| ] | |
| }, | |
| "subnets": [ | |
| { | |
| "name": "[variables('vNetSubnetName')]", | |
| "properties": { | |
| "addressPrefix": "[variables('vNetSubnetAddressPrefix')]", | |
| "networkSecurityGroup": { | |
| "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName2'))]" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Microsoft.Network/networkInterfaces", | |
| "apiVersion": "2023-11-01", | |
| "name": "[variables('networkInterfaceName')]", | |
| "location": "[parameters('location')]", | |
| "dependsOn": [ | |
| "[resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))]", | |
| "[resourceId('Microsoft.Network/virtualNetworks', variables('vNetName'))]", | |
| "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName'))]" | |
| ], | |
| "properties": { | |
| "ipConfigurations": [ | |
| { | |
| "name": "ipconfig1", | |
| "properties": { | |
| "privateIPAllocationMethod": "Dynamic", | |
| "publicIPAddress": { | |
| "id": "[resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))]" | |
| }, | |
| "subnet": { | |
| "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vNetName'), variables('vNetSubnetName'))]" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Microsoft.Compute/virtualMachines", | |
| "apiVersion": "2023-03-01", | |
| "name": "[variables('vmName')]", | |
| "location": "[parameters('location')]", | |
| "dependsOn": [ | |
| "[resourceId('Microsoft.Network/networkInterfaces', variables('networkInterfaceName'))]" | |
| ], | |
| "properties": { | |
| "hardwareProfile": { | |
| "vmSize": "[parameters('vmSize')]" | |
| }, | |
| "osProfile": { | |
| "computerName": "[variables('vmName')]", | |
| "adminUsername": "[parameters('adminUsername')]", | |
| "adminPassword": "[parameters('adminPassword')]", | |
| "linuxConfiguration": { | |
| "disablePasswordAuthentication": false | |
| } | |
| }, | |
| "storageProfile": { | |
| "imageReference": { | |
| "publisher": "Canonical", | |
| "offer": "0001-com-ubuntu-server-jammy", | |
| "sku": "22_04-lts-gen2", | |
| "version": "latest" | |
| }, | |
| "osDisk": { | |
| "createOption": "fromImage" | |
| } | |
| }, | |
| "networkProfile": { | |
| "networkInterfaces": [ | |
| { | |
| "id": "[resourceId('Microsoft.Network/networkInterfaces', variables('networkInterfaceName'))]" | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| ], | |
| "outputs": {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment