Skip to content

Commit

Permalink
add azurerm_databricks_workspace to test tf
Browse files Browse the repository at this point in the history
  • Loading branch information
iwarapter committed May 5, 2023
1 parent bcbc29b commit e1cca89
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,21 @@ func (r SynchronizationJobProvisionOnDemandResource) Exists(ctx context.Context,
func (SynchronizationJobProvisionOnDemandResource) template(data acceptance.TestData) string {
return fmt.Sprintf(`
provider "azuread" {}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "test" {
name = "acctestRG-databricks-%d"
location = "%s"
}
resource "azurerm_databricks_workspace" "test" {
name = "acctestDBW-%d"
resource_group_name = azurerm_resource_group.test.name
location = azurerm_resource_group.test.location
sku = "%s"
}
data "azuread_client_config" "test" {}
Expand Down

0 comments on commit e1cca89

Please sign in to comment.