Hello
We need to assign a user-assigned identity to the connector in Azure.
Is there an option to attach the identity to the netapp-cloudmanager_connector_azure resource?
For reference, the azurerm_virtual_machine resource provides a way to assign an identity, like this:
resource "azurerm_virtual_machine" "main" {
name = "test"
...
identity {
type = "UserAssigned"
identity_ids = [azurerm_user_assigned_identity.example.id]
}
}
Does something similar exist for netapp-cloudmanager_connector_azure?
Regards
Moon