-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Terraform provider to 1.37.0 (#1235)
## Changes Upgrade Terraform provider to 1.37.0 Currently we're using 1.36.2 version which uses Go SDK 0.30 which does not have U2M enabled for all clouds. Upgrading to 1.37.0 allows TF provider (and thus DABs) to use U2M Fixes #1231
- Loading branch information
1 parent
f69b707
commit 1dbc086
Showing
14 changed files
with
855 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package schema | ||
|
||
const ProviderVersion = "1.36.2" | ||
const ProviderVersion = "1.37.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
57 changes: 57 additions & 0 deletions
57
bundle/internal/tf/schema/data_source_storage_credential.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// Generated from Databricks Terraform provider schema. DO NOT EDIT. | ||
|
||
package schema | ||
|
||
type DataSourceStorageCredentialStorageCredentialInfoAwsIamRole struct { | ||
ExternalId string `json:"external_id,omitempty"` | ||
RoleArn string `json:"role_arn"` | ||
UnityCatalogIamArn string `json:"unity_catalog_iam_arn,omitempty"` | ||
} | ||
|
||
type DataSourceStorageCredentialStorageCredentialInfoAzureManagedIdentity struct { | ||
AccessConnectorId string `json:"access_connector_id"` | ||
CredentialId string `json:"credential_id,omitempty"` | ||
ManagedIdentityId string `json:"managed_identity_id,omitempty"` | ||
} | ||
|
||
type DataSourceStorageCredentialStorageCredentialInfoAzureServicePrincipal struct { | ||
ApplicationId string `json:"application_id"` | ||
ClientSecret string `json:"client_secret"` | ||
DirectoryId string `json:"directory_id"` | ||
} | ||
|
||
type DataSourceStorageCredentialStorageCredentialInfoCloudflareApiToken struct { | ||
AccessKeyId string `json:"access_key_id"` | ||
AccountId string `json:"account_id"` | ||
SecretAccessKey string `json:"secret_access_key"` | ||
} | ||
|
||
type DataSourceStorageCredentialStorageCredentialInfoDatabricksGcpServiceAccount struct { | ||
CredentialId string `json:"credential_id,omitempty"` | ||
Email string `json:"email,omitempty"` | ||
} | ||
|
||
type DataSourceStorageCredentialStorageCredentialInfo struct { | ||
Comment string `json:"comment,omitempty"` | ||
CreatedAt int `json:"created_at,omitempty"` | ||
CreatedBy string `json:"created_by,omitempty"` | ||
Id string `json:"id,omitempty"` | ||
MetastoreId string `json:"metastore_id,omitempty"` | ||
Name string `json:"name,omitempty"` | ||
Owner string `json:"owner,omitempty"` | ||
ReadOnly bool `json:"read_only,omitempty"` | ||
UpdatedAt int `json:"updated_at,omitempty"` | ||
UpdatedBy string `json:"updated_by,omitempty"` | ||
UsedForManagedStorage bool `json:"used_for_managed_storage,omitempty"` | ||
AwsIamRole *DataSourceStorageCredentialStorageCredentialInfoAwsIamRole `json:"aws_iam_role,omitempty"` | ||
AzureManagedIdentity *DataSourceStorageCredentialStorageCredentialInfoAzureManagedIdentity `json:"azure_managed_identity,omitempty"` | ||
AzureServicePrincipal *DataSourceStorageCredentialStorageCredentialInfoAzureServicePrincipal `json:"azure_service_principal,omitempty"` | ||
CloudflareApiToken *DataSourceStorageCredentialStorageCredentialInfoCloudflareApiToken `json:"cloudflare_api_token,omitempty"` | ||
DatabricksGcpServiceAccount *DataSourceStorageCredentialStorageCredentialInfoDatabricksGcpServiceAccount `json:"databricks_gcp_service_account,omitempty"` | ||
} | ||
|
||
type DataSourceStorageCredential struct { | ||
Id string `json:"id,omitempty"` | ||
Name string `json:"name"` | ||
StorageCredentialInfo *DataSourceStorageCredentialStorageCredentialInfo `json:"storage_credential_info,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Generated from Databricks Terraform provider schema. DO NOT EDIT. | ||
|
||
package schema | ||
|
||
type DataSourceStorageCredentials struct { | ||
Id string `json:"id,omitempty"` | ||
Names []string `json:"names,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Generated from Databricks Terraform provider schema. DO NOT EDIT. | ||
|
||
package schema | ||
|
||
type ResourceFile struct { | ||
ContentBase64 string `json:"content_base64,omitempty"` | ||
FileSize int `json:"file_size,omitempty"` | ||
Id string `json:"id,omitempty"` | ||
Md5 string `json:"md5,omitempty"` | ||
ModificationTime string `json:"modification_time,omitempty"` | ||
Path string `json:"path"` | ||
RemoteFileModified bool `json:"remote_file_modified,omitempty"` | ||
Source string `json:"source,omitempty"` | ||
} |
Oops, something went wrong.