Skip to content

Commit 5508324

Browse files
dspatoulasDJ Spatoulas
and
DJ Spatoulas
authored
Use consistent provider requirements across all modules and examples (#124)
* Use consistent provider requirements across all modules and examples * Reduce version restrictions on AWS provider to target version 5 --------- Co-authored-by: DJ Spatoulas <[email protected]>
1 parent 57e9a1b commit 5508324

File tree

9 files changed

+10
-11
lines changed

9 files changed

+10
-11
lines changed

examples/adb-private-links/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
databricks = {
55
source = "databricks/databricks"
6-
version = ">=0.5.1"
6+
version = ">=1.13.0"
77
}
88

99
azurerm = {

examples/adb-splunk/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
databricks = {
55
source = "databricks/databricks"
6-
version = ">=0.5.1"
6+
version = ">=1.13.0"
77
}
88

99
azurerm = {

examples/adb-vnet-injection/modules/autoscaling_cluster/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
}
77
databricks = {
88
source = "databricks/databricks"
9-
version = ">=0.5.1"
9+
version = ">=1.13.0"
1010
}
1111
}
1212
}

examples/aws-workspace-basic/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88

99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 4.58.0"
11+
version = "~> 5.0"
1212
}
1313
}
1414
}

examples/aws-workspace-uc-simple/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "=4.57.0"
5+
version = "~> 5.0"
66
}
77

88
random = {

examples/aws-workspace-with-firewall/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88

99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 4.58.0"
11+
version = "~> 5.0"
1212
}
1313
}
1414
}

modules/aws-workspace-basic/versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ terraform {
33
required_providers {
44
databricks = {
55
source = "databricks/databricks"
6-
version = ">=0.5.1"
6+
version = ">=1.13.0"
77
}
88

99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 4.58.0"
11+
version = "~> 5.0"
1212
}
1313
}
1414
}

modules/aws-workspace-with-firewall/versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ terraform {
33
required_providers {
44
databricks = {
55
source = "databricks/databricks"
6-
version = ">=0.5.1"
6+
version = ">=1.13.0"
77
}
88

99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 4.58.0"
11+
version = "~> 5.0"
1212
}
1313
}
1414
}

modules/aws-workspace-with-firewall/workspace.tf

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ resource "time_sleep" "wait" {
2121
}
2222

2323
resource "databricks_mws_credentials" "this" {
24-
account_id = var.databricks_account_id
2524
role_arn = aws_iam_role.cross_account_role.arn
2625
credentials_name = "${local.prefix}-creds"
2726
depends_on = [time_sleep.wait]

0 commit comments

Comments
 (0)