Skip to content

Instantly share code, notes, and snippets.

@jongio
Created January 9, 2017 22:45
Show Gist options
  • Select an option

  • Save jongio/b55a0f3e8433a0484a6d07f2c7a724ac to your computer and use it in GitHub Desktop.

Select an option

Save jongio/b55a0f3e8433a0484a6d07f2c7a724ac to your computer and use it in GitHub Desktop.
Power BI Embedded ARM Template
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"defaultValue": "jongpbie-test1",
"type": "String"
},
"location": {
"defaultValue": "westus",
"type": "String"
}
},
"resources": [
{
"type": "Microsoft.PowerBI/workspaceCollections",
"sku": {
"name": "S1",
"tier": "Standard"
},
"name": "[parameters('name')]",
"apiVersion": "2016-01-29",
"location": "[parameters('location')]"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment