Skip to content

Instantly share code, notes, and snippets.

@LavizaFalakNaz
Last active July 25, 2021 10:13
Show Gist options
  • Save LavizaFalakNaz/37c1777bcbf9b333af6efd485e36ebf2 to your computer and use it in GitHub Desktop.
Save LavizaFalakNaz/37c1777bcbf9b333af6efd485e36ebf2 to your computer and use it in GitHub Desktop.
Deploying Azure Data factory with Bicep
param dataFactoryName string = 'adf-template-bicep-gh'
param location string = resourceGroup().location
resource dataFactoryName_resource 'Microsoft.DataFactory/factories@2018-06-01' = {
name: dataFactoryName
location: location
properties: {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment