Azurerm_storage_table_entity - Entity type

Hi,

How do we specify the data type of the entity when using azurerm_storage_table_entity to add entries to the table. Even though my input is of type number the entities in Azure storage table gets created as String by default.

``
resource “azurerm_storage_table_entity” “config” {
storage_account_name = azurerm_storage_account.scalingstorageaccount.name
table_name = azurerm_storage_table.scalingconfig.name
partition_key = “partition1”
row_key = var.sapsid
for_each = var.scalingconfig
entity = {
CurrentAppCount = each.value[“CurrentAppCount”]
MaxAppCount = each.value[“MaxAppCount”]
MinAppAcount = each.value[“MinAppAcount”]
}}

Regards,
Karthik