Azure VM From Marketplace Deployment Path Attributes
The following attributes would be used to define the Azure VM From Marketplace:
Every VM deployed from a Marketplace image is created with a managed disk, which is deleted when the sandbox ends.
If you want to deploy a third party application from a Marketplace image, make sure Programmatic Deployment is enabled for the image in the subscription. To enable, log in to Azure and open the Marketplace, find the image and click it, select the Want to deploy programmatically? Get started link at the bottom of the blade that appears. Then, in the Configure Programmatic Deployment blade, scroll down to the bottom, select Enable for the appropriate subscription and click Save. For additional information, see the following Azure help page: Working with Marketplace Images on Azure Resource Manager.
Attribute | Azure shell version | Description |
---|---|---|
Cloud Provider | All | Name of the Azure cloud provider resource to be used |
Image Publisher | All | Define the VM image's Publisher, Offer and SKU. note The Publisher, Offer and SKU must exist in the Azure region where the VM will be deployed. For typical image properties, see the following Azure help pages: Linux VM images and Windows VM images. |
Image Offer | All | Image Offer |
Image SKU | All | Image SKU |
VM Size | All | (Optional) Size of the Microsoft Azure VM. This parameter determines the CPU, memory and networking capacity of the VM. Leave it empty to use the default VM Size that was set in the cloud provider resource. For example: "Standard_A1_v2”. important For Azure Apps that will run configuration management operations, specify a VM size of Standard_A2_v2 or larger. |
Disk Type | All | Type of disk to use for the VM's operating system. Possible options depend on the shell version: Azure 1G shell:
Azure 2G shell:
|
Disk Size | All | (Optional) Disk size (in GB) of the VM's operating system. For example, "17” or "35”. If you leave it empty, CloudShell will determine the disk size according to the App's VM Size. |
Data Disks | 2G | Semicolon-separated list of data disks that will be added to the VM. The syntax is: For example:
Supported disk types are:
|
License Type | 2G | Optionally apply an OS license you own to the VM. Options are:
|
Enable Boot Diagnostics | 2G | Enable Boot diagnostics for the VM. For additional information, see Microsoft Docs' Azure boot diagnostics article. |
Boot Diagnostics Storage Account | 2G | The name of a storage account where boot diagnostic artifacts will be stored. Enter "Sandbox Storage" to use the storage account created by the sandbox. By default: the managed storage account is used if Enable Boot Diagnostics is enabled. |
Resource Group Name | 2G | (Optional) The name of the predefined resource group where the VM will be deployed. This resource group will contain all cloud resources created for the VM (such as network interfaces, security groups, disks and the VM itself). When the VM tears down, its cloud resources will be deleted from the resource group but the resource group will remain. |
Add Public IP | All | Set to True to use a public IP address to communicate with the virtual machine from outside the virtual network. In most cases the public IP address is associated with the VM until the VM is stopped or terminated, after which the IP is no longer available. To ensure that the IP is available to your subscription at any time, reserve it by setting the Public IP Type attribute to Static. |
Wait for IP | All | Determines if the App deployment process waits for the VM to get an IP. Default is False. |
Extension Script File / Configuration | All | (Optional) Custom extension script (PowerShell, Python, batch, etc.) to execute on the deployed VM.
Notes
|
Public IP Type | All | Set to Static to ensure that the VM always uses the same public IP. By default, public IPs are Dynamic and the address associated to them may change when the VM is powered off. |
Inbound Ports | All | (Optional) Semi-colon separated list of ports and protocols to open for inbound traffic. Note that by default access from the management VPC is allowed and all ports are open for traffic between Azure App VMs within the sandbox, but this can be changed using the Allow All Sandbox Traffic attribute. In addition, all outbound traffic is allowed. The syntax is:
For example: "80;tcp:443;udp:200-220". note If not specified, the protocol defaults to TCP. Tips
|
Custom Tags | 2G | Semi-colon separated list of up to 9 tags to be applied to all related Azure objects created during the App deployment, such as the sandbox's resource group, VNETs, subnets, NSGs and VMs. Attribute supports the following syntax: [TagName]=[TagValue]; [TagName]=[TagValue]. For example: "Tag1=Val1;Tag2=Val2” |
Allow All Sandbox Traffic | All | Determines if the App allows inbound traffic from all other Azure Apps in the sandbox. If set to False, the App's VM will be isolated. Access from specific Apps or subnets can be defined using the Inbound Ports attribute or API. note By default, this attribute is True, and access is allowed to all ports from all Apps in the sandbox. By default, all ports are open for traffic within the sandbox. |
Enable IP Forwarding | 2G | Enables IP forwarding on all network interfaces of the app in order to support virtual appliances like routers and firewalls that are connected to multiple subnets. |
Autoload | 2G | Enables the automatic execution of the Autoload command during reservation Setup. |
Availability Zones | 2G | Specify the Availability Zone (1, 2, or 3) in which the App’s VM, managed disk and public IP (if available) will be deployed. Leave empty to inherit the Availability Zones defined on the cloud provider resource. For details and supported regions, see Regions and availability zones. |