The SQLServer Logical ingredient is a plugin for bake. When included in a recipe, this will create a SQLServer Logical.
name: databricks
shortName: databricks
version: 1.0.0
ingredients:
- "@azbake/ingredient-databricks@~"
resourceGroup: true
rgOverride: HCHB_DataAdmins_DataWarehouse_Dev
parallelRegions: false
variables:
location : "centralus"
workspaceName : "az_databricks_test"
tier : "premium"
recipe:
namespace:
properties:
type: "@azbake/ingredient-databricks"
parameters:
location : "[coreutils.variable('location')]"
workspaceName : "[coreutils.variable('workspaceName')]"
tier : "[coreutils.variable('tier')]"
property | required | description |
---|---|---|
location | yes | The geo-location where the resource lives |
workspaceName | Yes | The name of the workspace. |
tier | Yes | The SKU tier. |
Utility classes can be used inside of the bake.yaml file for parameter and source values.
| function | description |
| create_resource_name()
| Returns the name created for the Service Bus Namespace when deployed |
Gets the name created for the App Service Plan when deployed.
...
parameters:
planName: "[DataBricksUtils.create_resource_name()]"
...
string