How to capture detail information about the pfx being deployed in output variables

Considering this example:

resource "azurerm_batch_certificate" "example" {
  resource_group_name  = azurerm_resource_group.example.name
  account_name         = azurerm_batch_account.example.name
  certificate          = filebase64("certificate.pfx")
  format               = "Pfx"
  password             = "terraform"
  thumbprint           = "42C107874FD0E4A9583292A2F1098E8FE4B2EDDA"
  thumbprint_algorithm = "SHA1"
}

Is there anyway to have output variables that output the detail of the pfx file being uploaded?

The detail information I am looking for are listed by this data source.

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/key_vault_certificate

Is there any data source pfx certificate files similar to azurerm_key_vault_certificate ?