Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.88 KB

File metadata and controls

38 lines (26 loc) · 1.88 KB
subcategory
Storage

databricks_dbfs_file Data Source

-> Note If you have a fully automated setup with workspaces created by databricks_mws_workspaces or azurerm_databricks_workspace, please make sure to add depends_on attribute in order to prevent default auth: cannot configure default credentials errors.

This data source allows to get file content from Databricks File System (DBFS).

Example Usage

data "databricks_dbfs_file" "report" {
  path            = "dbfs:/reports/some.csv"
  limit_file_size = "true"
}

Argument Reference

  • path - (Required) Path on DBFS for the file from which to get content.
  • limit_file_size - (Required - boolean) Do not load content for files larger than 4MB.

Attribute Reference

This data source exports the following attributes:

  • content - base64-encoded file contents
  • file_size - size of the file in bytes

Related Resources

The following resources are used in the same context: