Skip to content

Commit

Permalink
Upgrade TF provider to 1.63.0 (#2162)
Browse files Browse the repository at this point in the history
## Changes
No significant changes to call out for DABs.
  • Loading branch information
andrewnester authored Jan 16, 2025
1 parent 8f34fc7 commit 9824460
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bundle/internal/tf/codegen/schema/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package schema

const ProviderVersion = "1.62.0"
const ProviderVersion = "1.63.0"
7 changes: 7 additions & 0 deletions bundle/internal/tf/schema/resource_external_location.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ type ResourceExternalLocationEncryptionDetails struct {

type ResourceExternalLocation struct {
AccessPoint string `json:"access_point,omitempty"`
BrowseOnly bool `json:"browse_only,omitempty"`
Comment string `json:"comment,omitempty"`
CreatedAt int `json:"created_at,omitempty"`
CreatedBy string `json:"created_by,omitempty"`
CredentialId string `json:"credential_id,omitempty"`
CredentialName string `json:"credential_name"`
Fallback bool `json:"fallback,omitempty"`
ForceDestroy bool `json:"force_destroy,omitempty"`
ForceUpdate bool `json:"force_update,omitempty"`
Id string `json:"id,omitempty"`
Expand All @@ -24,6 +29,8 @@ type ResourceExternalLocation struct {
Owner string `json:"owner,omitempty"`
ReadOnly bool `json:"read_only,omitempty"`
SkipValidation bool `json:"skip_validation,omitempty"`
UpdatedAt int `json:"updated_at,omitempty"`
UpdatedBy string `json:"updated_by,omitempty"`
Url string `json:"url"`
EncryptionDetails *ResourceExternalLocationEncryptionDetails `json:"encryption_details,omitempty"`
}
2 changes: 1 addition & 1 deletion bundle/internal/tf/schema/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Root struct {

const ProviderHost = "registry.terraform.io"
const ProviderSource = "databricks/databricks"
const ProviderVersion = "1.62.0"
const ProviderVersion = "1.63.0"

func NewRoot() *Root {
return &Root{
Expand Down

0 comments on commit 9824460

Please sign in to comment.