Skip to content

Commit 4cf3af5

Browse files
committed
fix: azurerm provider; removed sku var
1 parent 85f2c75 commit 4cf3af5

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,18 @@ Terraform module used for management of Databricks Premium Resources
66
<!-- BEGIN_TF_DOCS -->
77
## Requirements
88

9-
| Name | Version |
10-
|-------------------------------------------------------------------------------|------------|
11-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
12-
| <a name="requirement_databricks"></a> [databricks](#requirement\_databricks) | >= 1.9.0 |
9+
| Name | Version |
10+
|------------------------------------------------------------------------------|-----------|
11+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
12+
| <a name="requirement_databricks"></a> [databricks](#requirement\_databricks) | >= 1.9.0 |
13+
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 3.40.0 |
1314

1415
## Providers
1516

16-
| Name | Version |
17-
|-------------------------------------------------------------------------|---------|
18-
| <a name="provider_databricks"></a> [databricks](#provider\_databricks) | 1.9.0 |
17+
| Name | Version |
18+
|------------------------------------------------------------------------|---------|
19+
| <a name="provider_databricks"></a> [databricks](#provider\_databricks) | 1.9.0 |
20+
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | 3.40.0 |
1921

2022
## Modules
2123

@@ -55,7 +57,6 @@ No modules.
5557
| <a name="input_env"></a> [env](#input\_env) | Environment name | `string` | n/a | yes |
5658
| <a name="input_project"></a> [project](#input\_project) | Project name | `string` | n/a | yes |
5759
| <a name="input_location"></a> [location](#input\_location) | Azure location | `string` | n/a | yes |
58-
| <a name="input_sku"></a> [sku](#input\_sku) | The sku to use for the Databricks Workspace: [standard/premium/trial] | `string` | n/a | yes |
5960
| <a name="input_workspace_id"></a> [workspace\_id](#input\_workspace\_id) | Id of Azure Databricks workspace | `string` | n/a | yes |
6061
| <a name="input_suffix"></a> [suffix](#input\_suffix) | Optional suffix that would be added to the end of resources names. | `string` | "" | no |
6162
| <a name="input_user_object_ids"></a> [user\_object\_ids](#input\_user\_object\_ids) | Map of AD usernames and corresponding object IDs | `map(string)` | {} | no |

variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ variable "location" {
1313
description = "Azure location"
1414
}
1515

16-
variable "sku" {
17-
type = string
18-
description = "The sku to use for the Databricks Workspace: [standard|premium|trial]"
19-
}
20-
2116
variable "workspace_id" {
2217
type = string
2318
description = "Id of Azure Databricks workspace"

versions.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ terraform {
22
required_version = ">=1.0.0"
33

44
required_providers {
5+
azurerm = {
6+
source = "hashicorp/azurerm"
7+
version = "=3.40.0"
8+
}
59
databricks = {
610
source = "databricks/databricks"
711
version = ">=1.9.0"

0 commit comments

Comments
 (0)