Use this data source to access information about an existing Storage Table Entity.
data "azurerm_storage_table_entities" "example" {
table_name = "example-table-name"
storage_account_name = "example-storage-account-name"
filter = "PartitionKey eq 'example'"
}
The following arguments are supported:
table_name
- The name of the Table.
storage_account_name
- The name of the Storage Account where the Table exists.
filter
- The filter used to retrieve the entities.
select
- (Optional) A list of properties to select from the returned Storage Table Entities.
id
- The ID of the storage table entity.
items
- A list of items
blocks as defined below.
Each element in items
block exports the following:
partition_key
- Partition Key of the Entity.
row_key
- Row Key of the Entity.
properties
- A map of any additional properties in key-value format.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minutes) Used when retrieving the Storage Table Entity.