Примечание
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Чтобы использовать управляемые удостоверения для приложений Service Fabric в ресурсах Azure, сначала включите службу токенов управляемого удостоверения в кластере. This service is responsible for the authentication of Service Fabric applications using their managed identities, and for obtaining access tokens on their behalf. Once the service is enabled, you can see it in Service Fabric Explorer under the System section in the left pane, running under the name fabric:/System/ManagedIdentityTokenService next to other system services.
Примечание
Среда выполнения Service Fabric версии 6.5.658.9590 или более поздней требуется для включения службы токенов управляемой идентификации.
To enable the Managed Identity Token Service at cluster creation time, add the following snippet to your cluster Azure Resource Manager template:
"fabricSettings": [
{
"name": "ManagedIdentityTokenService",
"parameters": [
{
"name": "IsEnabled",
"value": "true"
}
]
}
]
If the deployment fails with this message, it means the cluster is not on the required Service Fabric version (the minimum supported runtime is 6.5 CU2):
{
"code": "ParameterNotAllowed",
"message": "Section 'ManagedIdentityTokenService' and Parameter 'IsEnabled' is not allowed."
}
Review managed identity support in Azure Service Fabric
Включение поддержки управляемых удостоверений в существующем кластере Azure Service Fabric
- Развертывание приложения Azure Service Fabric с системным управляемым удостоверением
- Разверните приложение Azure Service Fabric с назначенным пользователем управляемым удостоверением
- Leverage the managed identity of a Service Fabric application from service code
- Предоставление приложению Azure Service Fabric доступа к другим ресурсам Azure