Skip to content

Commit

Permalink
Merge branch 'fix/make-defining-permissions-optional' of https://gith…
Browse files Browse the repository at this point in the history
…ub.com/data-platform-hq/terraform-databricks-external-location into fix/make-defining-permissions-optional
  • Loading branch information
Artem Vovchenko committed Jan 20, 2025
2 parents f60bfc2 + ec7fe99 commit b4d0636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ No modules.
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_external_locations"></a> [external\_locations](#input\_external\_locations) | List of object with external location configuration attributes | <pre>list(object({<br/> index = string # Index of instance, for example short name, used later to access exact external location in output map<br/> name = string # Custom whole name of resource<br/> url = string # Path URL in cloud storage<br/> credentials_name = optional(string)<br/> owner = optional(string) # Owner of resource<br/> skip_validation = optional(bool, true) # Suppress validation errors if any & force save the external location<br/> read_only = optional(bool, false) # Indicates whether the external location is read-only.<br/> force_destroy = optional(bool, true)<br/> force_update = optional(bool, true)<br/> comment = optional(string, "External location provisioned by Terraform")<br/> permissions = optional(set(object({<br/> principal = string<br/> privileges = list(string)<br/> })), [])<br/> isolation_mode = optional(string, "ISOLATION_MODE_OPEN")<br/> }))</pre> | `[]` | no |
| <a name="input_storage_credential"></a> [storage\_credential](#input\_storage\_credential) | Object with storage credentials configuration attributes | <pre>object({<br/> azure_access_connector_id = optional(string, null) # Azure Databricks Access Connector Id<br/> cloud = optional(string, "")<br/> name = optional(string, null) # Custom whole name of resource <br/> owner = optional(string) # Owner of resource<br/> force_destroy = optional(bool, true)<br/> comment = optional(string, "Managed identity credential provisioned by Terraform")<br/> permissions = optional(set(object({<br/> principal = string<br/> privileges = list(string)<br/> })), [])<br/> isolation_mode = optional(string, "ISOLATION_MODE_OPEN")<br/> })</pre> | n/a | yes |
| <a name="input_storage_credential"></a> [storage\_credential](#input\_storage\_credential) | Object with storage credentials configuration attributes | <pre>object({<br/> azure_access_connector_id = optional(string, null) # Azure Databricks Access Connector Id<br/> cloud = string # Cloud (azure, aws or gcp)<br/> name = optional(string, null) # Custom whole name of resource<br/> owner = optional(string) # Owner of resource<br/> force_destroy = optional(bool, true)<br/> comment = optional(string, "Managed identity credential provisioned by Terraform")<br/> permissions = optional(set(object({<br/> principal = string<br/> privileges = list(string)<br/> })), [])<br/> isolation_mode = optional(string, "ISOLATION_MODE_OPEN")<br/> })</pre> | n/a | yes |

## Outputs

Expand Down

0 comments on commit b4d0636

Please sign in to comment.