Snippets/arm-json-parameter.snippets.ps1xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<?xml version='1.0' encoding='utf-8' ?> <Snippets xmlns='http://schemas.microsoft.com/PowerShell/Snippets'> <Snippet Version='1.0.0'> <Header> <Title>arm-json-parameter</Title> <Description>This snippet adds a Microsoft Azure Resource Manager (ARM) JSON Template parameter.</Description> <Author>Trevor Sullivan <trevor@trevorsullivan.net</Author> <SnippetTypes> <SnippetType>Expansion</SnippetType> </SnippetTypes> </Header> <Code> <Script Language='PowerShell' CaretOffset='0'> <![CDATA[ "param1": { "allowedValues": [ "", "" ], "defaultValue": "", "type": "string", "metadata": { "description": "" }, "minLength": 5, "maxLength": 10, "minValue": 5, "maxValue": 10 }]]> </Script> </Code> </Snippet> </Snippets> |