Hi @Ekambaram V
Azure doesn’t have a direct equivalent to AWS IAM RolesAnywhere, but it supports a similar approach through:
1.Workload Identity Federation with OpenID Connect (OIDC): This allows GitHub Actions to securely access Azure resources without storing long-lived credentials, similar to how RolesAnywhere works with short-term credentials.
2.Azure Managed Identities: Azure Managed Identities provide an identity for services to authenticate with Azure resources securely. You can assign a managed identity to your GitHub Actions workflow to access Azure resources without storing credentials.
For more information, please refer to: https://learn.microsoft.com/en-us/azure/developer/github/connect-from-azure
Hope this helps! Let us know if you have any further questions.