Use this data source to access information about an existing Storage Table Entity.
data "azurerm_storage_table_entity" "example" {
table_name = "example-table-name"
storage_account_name = "example-storage-account-name"
partition_key = "example-partition-key"
row_key = "example-row-key"
}
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.
partition_key
- The key for the partition where the entity will be retrieved.
row_key
- The key for the row where the entity will be retrieved.
id
- The ID of the storage table entity.
entity
- A map of key/value pairs that describe the entity to be stored in the storage table.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minutes) Used when retrieving the Storage Table Entity.