Microsoft Azure · Schema

ManagedClusterIdentity

Identity for the managed cluster.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
principalId string The principal ID of the system-assigned identity.
tenantId string The tenant ID of the system-assigned identity.
type string The type of identity used.
userAssignedIdentities object
View JSON Schema on GitHub

JSON Schema

azure-kubernetes-service-managed-cluster-identity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ManagedClusterIdentity",
  "type": "object",
  "description": "Identity for the managed cluster.",
  "properties": {
    "principalId": {
      "type": "string",
      "description": "The principal ID of the system-assigned identity."
    },
    "tenantId": {
      "type": "string",
      "description": "The tenant ID of the system-assigned identity."
    },
    "type": {
      "type": "string",
      "description": "The type of identity used."
    },
    "userAssignedIdentities": {
      "type": "object"
    }
  }
}