Skip to content

Commit c82dc9e

Browse files
authored
Upgraded TF provider to 1.84.0 (#3151)
## Changes Upgraded TF provider to 1.84 Notable changes: - Added support for `environment` field in pipelines ## Tests Covered by existing tests <!-- If your PR needs to be included in the release notes for next release, add a separate entry in NEXT_CHANGELOG.md as part of your PR. -->
1 parent a6080fa commit c82dc9e

21 files changed

+370
-289
lines changed

NEXT_CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
### Notable Changes
66

77
### Dependency updates
8+
* Upgraded TF provider to 1.84.0 ([#3151](https://github.com/databricks/cli/pull/3151))
89

910
### CLI
1011
* Fixed an issue where running `databricks auth login` would remove the `cluster_id` field from profiles in `.databrickscfg`. The login process now preserves the `cluster_id` field. ([#2988](https://github.com/databricks/cli/pull/2988))
1112

1213
### Bundles
13-
- "bundle summary" now prints diagnostic warnings to stderr ([#3123](https://github.com/databricks/cli/pull/3123))
14+
* "bundle summary" now prints diagnostic warnings to stderr ([#3123](https://github.com/databricks/cli/pull/3123))
1415

1516
### API Changes

acceptance/terraform/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
databricks = {
44
source = "databricks/databricks"
5-
version = "1.83.0"
5+
version = "1.84.0"
66
}
77
}
88

acceptance/terraform/output.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Initializing the backend...
55

66
Initializing provider plugins...
7-
- Finding databricks/databricks versions matching "1.83.0"...
8-
- Installing databricks/databricks v1.83.0...
9-
- Installed databricks/databricks v1.83.0 (unauthenticated)
7+
- Finding databricks/databricks versions matching "1.84.0"...
8+
- Installing databricks/databricks v1.84.0...
9+
- Installed databricks/databricks v1.84.0 (unauthenticated)
1010

1111
Terraform has created a lock file .terraform.lock.hcl to record the provider
1212
selections it made above. Include this file in your version control repository
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package schema
22

3-
const ProviderVersion = "1.83.0"
3+
const ProviderVersion = "1.84.0"

bundle/internal/tf/schema/data_source_cluster.go

Lines changed: 85 additions & 81 deletions
Large diffs are not rendered by default.

bundle/internal/tf/schema/data_source_database_instance.go

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
package schema
44

55
type DataSourceDatabaseInstance struct {
6-
Capacity string `json:"capacity,omitempty"`
7-
CreationTime string `json:"creation_time,omitempty"`
8-
Creator string `json:"creator,omitempty"`
9-
Name string `json:"name"`
10-
PgVersion string `json:"pg_version,omitempty"`
11-
ReadWriteDns string `json:"read_write_dns,omitempty"`
12-
State string `json:"state,omitempty"`
13-
Stopped bool `json:"stopped,omitempty"`
14-
Uid string `json:"uid,omitempty"`
6+
Capacity string `json:"capacity,omitempty"`
7+
CreationTime string `json:"creation_time,omitempty"`
8+
Creator string `json:"creator,omitempty"`
9+
EffectiveStopped bool `json:"effective_stopped,omitempty"`
10+
Name string `json:"name"`
11+
PgVersion string `json:"pg_version,omitempty"`
12+
ReadWriteDns string `json:"read_write_dns,omitempty"`
13+
State string `json:"state,omitempty"`
14+
Stopped bool `json:"stopped,omitempty"`
15+
Uid string `json:"uid,omitempty"`
1516
}

bundle/internal/tf/schema/data_source_database_instances.go

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
33
package schema
44

55
type DataSourceDatabaseInstancesDatabaseInstances struct {
6-
Capacity string `json:"capacity,omitempty"`
7-
CreationTime string `json:"creation_time,omitempty"`
8-
Creator string `json:"creator,omitempty"`
9-
Name string `json:"name"`
10-
PgVersion string `json:"pg_version,omitempty"`
11-
ReadWriteDns string `json:"read_write_dns,omitempty"`
12-
State string `json:"state,omitempty"`
13-
Stopped bool `json:"stopped,omitempty"`
14-
Uid string `json:"uid,omitempty"`
6+
Capacity string `json:"capacity,omitempty"`
7+
CreationTime string `json:"creation_time,omitempty"`
8+
Creator string `json:"creator,omitempty"`
9+
EffectiveStopped bool `json:"effective_stopped,omitempty"`
10+
Name string `json:"name"`
11+
PgVersion string `json:"pg_version,omitempty"`
12+
ReadWriteDns string `json:"read_write_dns,omitempty"`
13+
State string `json:"state,omitempty"`
14+
Stopped bool `json:"stopped,omitempty"`
15+
Uid string `json:"uid,omitempty"`
1516
}
1617

1718
type DataSourceDatabaseInstances struct {

bundle/internal/tf/schema/data_source_jobs.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ type DataSourceJobs struct {
66
Id string `json:"id,omitempty"`
77
Ids map[string]string `json:"ids,omitempty"`
88
JobNameContains string `json:"job_name_contains,omitempty"`
9+
Key string `json:"key,omitempty"`
910
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
2+
3+
package schema
4+
5+
type DataSourceOnlineStore struct {
6+
Capacity string `json:"capacity,omitempty"`
7+
CreationTime string `json:"creation_time,omitempty"`
8+
Creator string `json:"creator,omitempty"`
9+
Name string `json:"name"`
10+
State string `json:"state,omitempty"`
11+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
2+
3+
package schema
4+
5+
type DataSourceOnlineStoresOnlineStores struct {
6+
Capacity string `json:"capacity,omitempty"`
7+
CreationTime string `json:"creation_time,omitempty"`
8+
Creator string `json:"creator,omitempty"`
9+
Name string `json:"name"`
10+
State string `json:"state,omitempty"`
11+
}
12+
13+
type DataSourceOnlineStores struct {
14+
OnlineStores []DataSourceOnlineStoresOnlineStores `json:"online_stores,omitempty"`
15+
}

0 commit comments

Comments
 (0)