Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created February 20, 2022 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnlokerse/50a6a08bf87cf07c571ab3f0d3761332 to your computer and use it in GitHub Desktop.
Save johnlokerse/50a6a08bf87cf07c571ab3f0d3761332 to your computer and use it in GitHub Desktop.
@secure()
param mySecureString string
@description('This parameter has a max length of 4.')
@maxLength(4)
param myDescriptionDecorator string
@description('This string can only contain values: development or test')
@allowed([
'development'
'test'
])
param myEnvironments string
@description('This parameter contains a default value')
param myPrefix string = 'euw-${uniqueString(resourceGroup().id)}-'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment