├── .gitignore ├── Architecture.jpg ├── README.md ├── aks └── aks-for-aml.template.bicep ├── aml └── machinelearning.template.bicep ├── azuredeploy.json ├── databricks ├── deployment.template.bicep ├── deployment │ ├── create_cluster.sh │ ├── create_pat.sh │ ├── create_secret_scope.sh │ ├── post_cluster_create.sh │ └── pre_cluster_create.sh ├── init_scripts │ └── capture_log_metrics.sh ├── jars │ ├── spark-listeners-loganalytics_3.0.1_2.12-1.0.0.jar │ └── spark-listeners_3.0.1_2.12-1.0.0.jar ├── notebooks │ ├── azure_runner_docs_example.ipynb │ ├── test-notebook.ipynb │ └── timezone_test.ipynb └── workspace.template.bicep ├── keyvault ├── keyvault.template.bicep └── keyvaultsecrets.template.bicep ├── main.bicep ├── monitor ├── eventhub.template.bicep └── loganalytics.template.bicep ├── network ├── firewall.template.bicep ├── privateendpoint.template.bicep ├── routetable.template.bicep ├── routetableFirewallRoute.template.bicep ├── securitygroup.template.bicep └── vnet.template.bicep ├── other ├── clientdevice.template.bicep └── managedIdentity.template.bicep ├── scripts └── enabled-monitoring.sh └── storage └── storageaccount.template.bicep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/Architecture.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/README.md -------------------------------------------------------------------------------- /aks/aks-for-aml.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/aks/aks-for-aml.template.bicep -------------------------------------------------------------------------------- /aml/machinelearning.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/aml/machinelearning.template.bicep -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /databricks/deployment.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/deployment.template.bicep -------------------------------------------------------------------------------- /databricks/deployment/create_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/deployment/create_cluster.sh -------------------------------------------------------------------------------- /databricks/deployment/create_pat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/deployment/create_pat.sh -------------------------------------------------------------------------------- /databricks/deployment/create_secret_scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/deployment/create_secret_scope.sh -------------------------------------------------------------------------------- /databricks/deployment/post_cluster_create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/deployment/post_cluster_create.sh -------------------------------------------------------------------------------- /databricks/deployment/pre_cluster_create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/deployment/pre_cluster_create.sh -------------------------------------------------------------------------------- /databricks/init_scripts/capture_log_metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/init_scripts/capture_log_metrics.sh -------------------------------------------------------------------------------- /databricks/jars/spark-listeners-loganalytics_3.0.1_2.12-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/jars/spark-listeners-loganalytics_3.0.1_2.12-1.0.0.jar -------------------------------------------------------------------------------- /databricks/jars/spark-listeners_3.0.1_2.12-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/jars/spark-listeners_3.0.1_2.12-1.0.0.jar -------------------------------------------------------------------------------- /databricks/notebooks/azure_runner_docs_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/notebooks/azure_runner_docs_example.ipynb -------------------------------------------------------------------------------- /databricks/notebooks/test-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/notebooks/test-notebook.ipynb -------------------------------------------------------------------------------- /databricks/notebooks/timezone_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/notebooks/timezone_test.ipynb -------------------------------------------------------------------------------- /databricks/workspace.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/databricks/workspace.template.bicep -------------------------------------------------------------------------------- /keyvault/keyvault.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/keyvault/keyvault.template.bicep -------------------------------------------------------------------------------- /keyvault/keyvaultsecrets.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/keyvault/keyvaultsecrets.template.bicep -------------------------------------------------------------------------------- /main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/main.bicep -------------------------------------------------------------------------------- /monitor/eventhub.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/monitor/eventhub.template.bicep -------------------------------------------------------------------------------- /monitor/loganalytics.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/monitor/loganalytics.template.bicep -------------------------------------------------------------------------------- /network/firewall.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/network/firewall.template.bicep -------------------------------------------------------------------------------- /network/privateendpoint.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/network/privateendpoint.template.bicep -------------------------------------------------------------------------------- /network/routetable.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/network/routetable.template.bicep -------------------------------------------------------------------------------- /network/routetableFirewallRoute.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/network/routetableFirewallRoute.template.bicep -------------------------------------------------------------------------------- /network/securitygroup.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/network/securitygroup.template.bicep -------------------------------------------------------------------------------- /network/vnet.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/network/vnet.template.bicep -------------------------------------------------------------------------------- /other/clientdevice.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/other/clientdevice.template.bicep -------------------------------------------------------------------------------- /other/managedIdentity.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/other/managedIdentity.template.bicep -------------------------------------------------------------------------------- /scripts/enabled-monitoring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/scripts/enabled-monitoring.sh -------------------------------------------------------------------------------- /storage/storageaccount.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordlinus/databricks-all-in-one-bicep-template/HEAD/storage/storageaccount.template.bicep --------------------------------------------------------------------------------