Automation Property Group (Inputs): Virtual Machine Essentials

by Simon Sparks · 28 January 2026

You can quickly add a property group to different Automation Assembler designs, which saves the time of adding the same multiple properties one by one. In addition, you have a single place to maintain or modify the set of properties, which ensures their consistent application.

Input property groups gather and apply a consistent set of properties at user request time. Input property groups can include entries for the user to add or select, or they might include read-only values that are needed by the design.Properties for the user to edit or select can be readable or encrypted. Read-only properties appear on the request form but can’t be edited. If you want read-only values to remain totally hidden, use a constant property group instead.

GitHub Repository: https://github.com/SimonSparksUK/Automation

Filename: pgVirtualMachineEssentials.json

{
  "type": "INPUT",
  "orgId": "--INSERT-YOUR-GUID-HERE--",
  "name": "pgVirtualMachineEssentials",
  "displayName": "Virtual Machine Essentials",
  "description": "Virtual Machine Essentials",
  "properties": {
    "inFlavor": {
      "type": "string",
      "encrypted": false,
      "oneOf": [
        {
          "encrypted": false,
          "title": "Extra Small ( vCPU 1, RAM 2 GB )",
          "const": "Extra Small"
        },
        {
          "encrypted": false,
          "title": "Small ( vCPU 2, RAM 4 GB )",
          "const": "Small"
        },
        {
          "encrypted": false,
          "title": "Medium ( vCPU 4, RAM 8GB )",
          "const": "Medium"
        },
        {
          "encrypted": false,
          "title": "Large ( vCPU 8, RAM 32 GB )",
          "const": "Large"
        },
        {
          "encrypted": false,
          "title": "Extra Large ( vCPU 16, RAM 64 GB )",
          "const": "Extra Large"
        }
      ],
      "title": "Flavor",
      "description": "Flavor",
      "default": "Extra Small"
    }
  }
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like