This example deploys an Azure Virtual Machine and starts an HTTP server on it.
// Copyright 2016-2020, Pulumi Corporation. All rights reserved.
import * as pulumi from "@pulumi/pulumi";
import * as compute from "@pulumi/azure-native/compute";
import * as network from "@pulumi/azure-native/network";
import * as resources from "@pulumi/azure-native/resources";
// Get the desired username and password for our VM.
const config = new pulumi.Config();
const username = config.require("username");
const password = config.requireSecret("password");
// All resources will share a resource group.
const resourceGroupName = new resources.ResourceGroup("server-rg").name;
// Create a network and subnet for all VMs.
const virtualNetwork = new network.VirtualNetwork("server-network", {
resourceGroupName,
addressSpace: { addressPrefixes: ["10.0.0.0/16"] },
subnets: [{
name: "default",
addressPrefix: "10.0.1.0/24",
}],
});
// Now allocate a public IP and assign it to our NIC.
const publicIp = new network.PublicIPAddress("server-ip", {
resourceGroupName,
publicIPAllocationMethod: network.IPAllocationMethod.Dynamic,
});
const networkInterface = new network.NetworkInterface("server-nic", {
resourceGroupName,
ipConfigurations: [{
name: "webserveripcfg",
subnet: virtualNetwork.subnets.apply(subnet => subnet![0]),
privateIPAllocationMethod: network.IPAllocationMethod.Dynamic,
publicIPAddress: { id: publicIp.id },
}],
});
const initScript = `#!/bin/bash\n
echo "Hello, World!" > index.html
nohup python -m SimpleHTTPServer 80 &`;
// Now create the VM, using the resource group and NIC allocated above.
const vm = new compute.VirtualMachine("server-vm", {
resourceGroupName,
networkProfile: {
networkInterfaces: [{ id: networkInterface.id }],
},
hardwareProfile: {
vmSize: compute.VirtualMachineSizeTypes.Standard_A0,
},
osProfile: {
computerName: "hostname",
adminUsername: username,
adminPassword: password,
customData: Buffer.from(initScript).toString("base64"),
linuxConfiguration: {
disablePasswordAuthentication: false,
},
},
storageProfile: {
osDisk: {
createOption: compute.DiskCreateOption.FromImage,
name: "myosdisk1",
},
imageReference: {
publisher: "canonical",
offer: "UbuntuServer",
sku: "16.04-LTS",
version: "latest",
},
},
});
// The public IP address is not allocated until the VM is running, so wait for that
// resource to create, and then lookup the IP address again to report its public IP.
export const ipAddress = vm.id.apply(_ => network.getPublicIPAddressOutput({
resourceGroupName: resourceGroupName,
publicIpAddressName: publicIp.name,
})).ipAddress;
git clone https://github.com/pulumi/examples
cd examples/azure-ts-webserver