1. Packages
  2. Azure Native
  3. API Docs
  4. containerservice
  5. JWTAuthenticator
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi

    Configuration for JWT authenticator in the managed cluster.

    Uses Azure REST API version 2025-07-02-preview.

    Example Usage

    Create or update JWT Authenticator

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var jwtAuthenticator = new AzureNative.ContainerService.JWTAuthenticator("jwtAuthenticator", new()
        {
            JwtAuthenticatorName = "jwt1",
            Properties = new AzureNative.ContainerService.Inputs.JWTAuthenticatorPropertiesArgs
            {
                ClaimMappings = new AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingsArgs
                {
                    Extra = new[]
                    {
                        new AzureNative.ContainerService.Inputs.JWTAuthenticatorExtraClaimMappingExpressionArgs
                        {
                            Key = "example.com/extrakey",
                            ValueExpression = "claims.customfield",
                        },
                    },
                    Groups = new AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionArgs
                    {
                        Expression = "claims.groups.split(',').map(group, 'aks:jwt:' + group)",
                    },
                    Username = new AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionArgs
                    {
                        Expression = "'aks:jwt:' + claims.sub",
                    },
                },
                ClaimValidationRules = new[]
                {
                    new AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRuleArgs
                    {
                        Expression = "has(claims.sub)",
                        Message = "Sub is required",
                    },
                    new AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRuleArgs
                    {
                        Expression = "claims.sub != ''",
                        Message = "Sub cannot be empty",
                    },
                },
                Issuer = new AzureNative.ContainerService.Inputs.JWTAuthenticatorIssuerArgs
                {
                    Audiences = new[]
                    {
                        "https://example.com/audience1",
                        "https://example.com/audience2",
                    },
                    Url = "https://example.com",
                },
                UserValidationRules = new[]
                {
                    new AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRuleArgs
                    {
                        Expression = "user.groups.all(group, group.startsWith('aks:jwt:admin:'))",
                        Message = "Must be in admin user group",
                    },
                },
            },
            ResourceGroupName = "rg1",
            ResourceName = "clustername1",
        });
    
    });
    
    package main
    
    import (
    	containerservice "github.com/pulumi/pulumi-azure-native-sdk/containerservice/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := containerservice.NewJWTAuthenticator(ctx, "jwtAuthenticator", &containerservice.JWTAuthenticatorArgs{
    			JwtAuthenticatorName: pulumi.String("jwt1"),
    			Properties: &containerservice.JWTAuthenticatorPropertiesArgs{
    				ClaimMappings: &containerservice.JWTAuthenticatorClaimMappingsArgs{
    					Extra: containerservice.JWTAuthenticatorExtraClaimMappingExpressionArray{
    						&containerservice.JWTAuthenticatorExtraClaimMappingExpressionArgs{
    							Key:             pulumi.String("example.com/extrakey"),
    							ValueExpression: pulumi.String("claims.customfield"),
    						},
    					},
    					Groups: &containerservice.JWTAuthenticatorClaimMappingExpressionArgs{
    						Expression: pulumi.String("claims.groups.split(',').map(group, 'aks:jwt:' + group)"),
    					},
    					Username: &containerservice.JWTAuthenticatorClaimMappingExpressionArgs{
    						Expression: pulumi.String("'aks:jwt:' + claims.sub"),
    					},
    				},
    				ClaimValidationRules: containerservice.JWTAuthenticatorValidationRuleArray{
    					&containerservice.JWTAuthenticatorValidationRuleArgs{
    						Expression: pulumi.String("has(claims.sub)"),
    						Message:    pulumi.String("Sub is required"),
    					},
    					&containerservice.JWTAuthenticatorValidationRuleArgs{
    						Expression: pulumi.String("claims.sub != ''"),
    						Message:    pulumi.String("Sub cannot be empty"),
    					},
    				},
    				Issuer: &containerservice.JWTAuthenticatorIssuerArgs{
    					Audiences: pulumi.StringArray{
    						pulumi.String("https://example.com/audience1"),
    						pulumi.String("https://example.com/audience2"),
    					},
    					Url: pulumi.String("https://example.com"),
    				},
    				UserValidationRules: containerservice.JWTAuthenticatorValidationRuleArray{
    					&containerservice.JWTAuthenticatorValidationRuleArgs{
    						Expression: pulumi.String("user.groups.all(group, group.startsWith('aks:jwt:admin:'))"),
    						Message:    pulumi.String("Must be in admin user group"),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("rg1"),
    			ResourceName:      pulumi.String("clustername1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.containerservice.JWTAuthenticator;
    import com.pulumi.azurenative.containerservice.JWTAuthenticatorArgs;
    import com.pulumi.azurenative.containerservice.inputs.JWTAuthenticatorPropertiesArgs;
    import com.pulumi.azurenative.containerservice.inputs.JWTAuthenticatorClaimMappingsArgs;
    import com.pulumi.azurenative.containerservice.inputs.JWTAuthenticatorClaimMappingExpressionArgs;
    import com.pulumi.azurenative.containerservice.inputs.JWTAuthenticatorIssuerArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var jwtAuthenticator = new JWTAuthenticator("jwtAuthenticator", JWTAuthenticatorArgs.builder()
                .jwtAuthenticatorName("jwt1")
                .properties(JWTAuthenticatorPropertiesArgs.builder()
                    .claimMappings(JWTAuthenticatorClaimMappingsArgs.builder()
                        .extra(JWTAuthenticatorExtraClaimMappingExpressionArgs.builder()
                            .key("example.com/extrakey")
                            .valueExpression("claims.customfield")
                            .build())
                        .groups(JWTAuthenticatorClaimMappingExpressionArgs.builder()
                            .expression("claims.groups.split(',').map(group, 'aks:jwt:' + group)")
                            .build())
                        .username(JWTAuthenticatorClaimMappingExpressionArgs.builder()
                            .expression("'aks:jwt:' + claims.sub")
                            .build())
                        .build())
                    .claimValidationRules(                
                        JWTAuthenticatorValidationRuleArgs.builder()
                            .expression("has(claims.sub)")
                            .message("Sub is required")
                            .build(),
                        JWTAuthenticatorValidationRuleArgs.builder()
                            .expression("claims.sub != ''")
                            .message("Sub cannot be empty")
                            .build())
                    .issuer(JWTAuthenticatorIssuerArgs.builder()
                        .audiences(                    
                            "https://example.com/audience1",
                            "https://example.com/audience2")
                        .url("https://example.com")
                        .build())
                    .userValidationRules(JWTAuthenticatorValidationRuleArgs.builder()
                        .expression("user.groups.all(group, group.startsWith('aks:jwt:admin:'))")
                        .message("Must be in admin user group")
                        .build())
                    .build())
                .resourceGroupName("rg1")
                .resourceName("clustername1")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const jwtAuthenticator = new azure_native.containerservice.JWTAuthenticator("jwtAuthenticator", {
        jwtAuthenticatorName: "jwt1",
        properties: {
            claimMappings: {
                extra: [{
                    key: "example.com/extrakey",
                    valueExpression: "claims.customfield",
                }],
                groups: {
                    expression: "claims.groups.split(',').map(group, 'aks:jwt:' + group)",
                },
                username: {
                    expression: "'aks:jwt:' + claims.sub",
                },
            },
            claimValidationRules: [
                {
                    expression: "has(claims.sub)",
                    message: "Sub is required",
                },
                {
                    expression: "claims.sub != ''",
                    message: "Sub cannot be empty",
                },
            ],
            issuer: {
                audiences: [
                    "https://example.com/audience1",
                    "https://example.com/audience2",
                ],
                url: "https://example.com",
            },
            userValidationRules: [{
                expression: "user.groups.all(group, group.startsWith('aks:jwt:admin:'))",
                message: "Must be in admin user group",
            }],
        },
        resourceGroupName: "rg1",
        resourceName: "clustername1",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    jwt_authenticator = azure_native.containerservice.JWTAuthenticator("jwtAuthenticator",
        jwt_authenticator_name="jwt1",
        properties={
            "claim_mappings": {
                "extra": [{
                    "key": "example.com/extrakey",
                    "value_expression": "claims.customfield",
                }],
                "groups": {
                    "expression": "claims.groups.split(',').map(group, 'aks:jwt:' + group)",
                },
                "username": {
                    "expression": "'aks:jwt:' + claims.sub",
                },
            },
            "claim_validation_rules": [
                {
                    "expression": "has(claims.sub)",
                    "message": "Sub is required",
                },
                {
                    "expression": "claims.sub != ''",
                    "message": "Sub cannot be empty",
                },
            ],
            "issuer": {
                "audiences": [
                    "https://example.com/audience1",
                    "https://example.com/audience2",
                ],
                "url": "https://example.com",
            },
            "user_validation_rules": [{
                "expression": "user.groups.all(group, group.startsWith('aks:jwt:admin:'))",
                "message": "Must be in admin user group",
            }],
        },
        resource_group_name="rg1",
        resource_name_="clustername1")
    
    resources:
      jwtAuthenticator:
        type: azure-native:containerservice:JWTAuthenticator
        properties:
          jwtAuthenticatorName: jwt1
          properties:
            claimMappings:
              extra:
                - key: example.com/extrakey
                  valueExpression: claims.customfield
              groups:
                expression: claims.groups.split(',').map(group, 'aks:jwt:' + group)
              username:
                expression: '''aks:jwt:'' + claims.sub'
            claimValidationRules:
              - expression: has(claims.sub)
                message: Sub is required
              - expression: claims.sub != ''
                message: Sub cannot be empty
            issuer:
              audiences:
                - https://example.com/audience1
                - https://example.com/audience2
              url: https://example.com
            userValidationRules:
              - expression: user.groups.all(group, group.startsWith('aks:jwt:admin:'))
                message: Must be in admin user group
          resourceGroupName: rg1
          resourceName: clustername1
    

    Create JWTAuthenticator Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new JWTAuthenticator(name: string, args: JWTAuthenticatorArgs, opts?: CustomResourceOptions);
    @overload
    def JWTAuthenticator(resource_name: str,
                         args: JWTAuthenticatorArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def JWTAuthenticator(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         properties: Optional[JWTAuthenticatorPropertiesArgs] = None,
                         resource_group_name: Optional[str] = None,
                         resource_name_: Optional[str] = None,
                         jwt_authenticator_name: Optional[str] = None)
    func NewJWTAuthenticator(ctx *Context, name string, args JWTAuthenticatorArgs, opts ...ResourceOption) (*JWTAuthenticator, error)
    public JWTAuthenticator(string name, JWTAuthenticatorArgs args, CustomResourceOptions? opts = null)
    public JWTAuthenticator(String name, JWTAuthenticatorArgs args)
    public JWTAuthenticator(String name, JWTAuthenticatorArgs args, CustomResourceOptions options)
    
    type: azure-native:containerservice:JWTAuthenticator
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args JWTAuthenticatorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args JWTAuthenticatorArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args JWTAuthenticatorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args JWTAuthenticatorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args JWTAuthenticatorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var jwtauthenticatorResource = new AzureNative.ContainerService.JWTAuthenticator("jwtauthenticatorResource", new()
    {
        Properties = new AzureNative.ContainerService.Inputs.JWTAuthenticatorPropertiesArgs
        {
            ClaimMappings = new AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingsArgs
            {
                Username = new AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionArgs
                {
                    Expression = "string",
                },
                Extra = new[]
                {
                    new AzureNative.ContainerService.Inputs.JWTAuthenticatorExtraClaimMappingExpressionArgs
                    {
                        Key = "string",
                        ValueExpression = "string",
                    },
                },
                Groups = new AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionArgs
                {
                    Expression = "string",
                },
                Uid = new AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionArgs
                {
                    Expression = "string",
                },
            },
            Issuer = new AzureNative.ContainerService.Inputs.JWTAuthenticatorIssuerArgs
            {
                Audiences = new[]
                {
                    "string",
                },
                Url = "string",
            },
            ClaimValidationRules = new[]
            {
                new AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRuleArgs
                {
                    Expression = "string",
                    Message = "string",
                },
            },
            UserValidationRules = new[]
            {
                new AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRuleArgs
                {
                    Expression = "string",
                    Message = "string",
                },
            },
        },
        ResourceGroupName = "string",
        ResourceName = "string",
        JwtAuthenticatorName = "string",
    });
    
    example, err := containerservice.NewJWTAuthenticator(ctx, "jwtauthenticatorResource", &containerservice.JWTAuthenticatorArgs{
    	Properties: &containerservice.JWTAuthenticatorPropertiesArgs{
    		ClaimMappings: &containerservice.JWTAuthenticatorClaimMappingsArgs{
    			Username: &containerservice.JWTAuthenticatorClaimMappingExpressionArgs{
    				Expression: pulumi.String("string"),
    			},
    			Extra: containerservice.JWTAuthenticatorExtraClaimMappingExpressionArray{
    				&containerservice.JWTAuthenticatorExtraClaimMappingExpressionArgs{
    					Key:             pulumi.String("string"),
    					ValueExpression: pulumi.String("string"),
    				},
    			},
    			Groups: &containerservice.JWTAuthenticatorClaimMappingExpressionArgs{
    				Expression: pulumi.String("string"),
    			},
    			Uid: &containerservice.JWTAuthenticatorClaimMappingExpressionArgs{
    				Expression: pulumi.String("string"),
    			},
    		},
    		Issuer: &containerservice.JWTAuthenticatorIssuerArgs{
    			Audiences: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Url: pulumi.String("string"),
    		},
    		ClaimValidationRules: containerservice.JWTAuthenticatorValidationRuleArray{
    			&containerservice.JWTAuthenticatorValidationRuleArgs{
    				Expression: pulumi.String("string"),
    				Message:    pulumi.String("string"),
    			},
    		},
    		UserValidationRules: containerservice.JWTAuthenticatorValidationRuleArray{
    			&containerservice.JWTAuthenticatorValidationRuleArgs{
    				Expression: pulumi.String("string"),
    				Message:    pulumi.String("string"),
    			},
    		},
    	},
    	ResourceGroupName:    pulumi.String("string"),
    	ResourceName:         pulumi.String("string"),
    	JwtAuthenticatorName: pulumi.String("string"),
    })
    
    var jwtauthenticatorResource = new JWTAuthenticator("jwtauthenticatorResource", JWTAuthenticatorArgs.builder()
        .properties(JWTAuthenticatorPropertiesArgs.builder()
            .claimMappings(JWTAuthenticatorClaimMappingsArgs.builder()
                .username(JWTAuthenticatorClaimMappingExpressionArgs.builder()
                    .expression("string")
                    .build())
                .extra(JWTAuthenticatorExtraClaimMappingExpressionArgs.builder()
                    .key("string")
                    .valueExpression("string")
                    .build())
                .groups(JWTAuthenticatorClaimMappingExpressionArgs.builder()
                    .expression("string")
                    .build())
                .uid(JWTAuthenticatorClaimMappingExpressionArgs.builder()
                    .expression("string")
                    .build())
                .build())
            .issuer(JWTAuthenticatorIssuerArgs.builder()
                .audiences("string")
                .url("string")
                .build())
            .claimValidationRules(JWTAuthenticatorValidationRuleArgs.builder()
                .expression("string")
                .message("string")
                .build())
            .userValidationRules(JWTAuthenticatorValidationRuleArgs.builder()
                .expression("string")
                .message("string")
                .build())
            .build())
        .resourceGroupName("string")
        .resourceName("string")
        .jwtAuthenticatorName("string")
        .build());
    
    jwtauthenticator_resource = azure_native.containerservice.JWTAuthenticator("jwtauthenticatorResource",
        properties={
            "claim_mappings": {
                "username": {
                    "expression": "string",
                },
                "extra": [{
                    "key": "string",
                    "value_expression": "string",
                }],
                "groups": {
                    "expression": "string",
                },
                "uid": {
                    "expression": "string",
                },
            },
            "issuer": {
                "audiences": ["string"],
                "url": "string",
            },
            "claim_validation_rules": [{
                "expression": "string",
                "message": "string",
            }],
            "user_validation_rules": [{
                "expression": "string",
                "message": "string",
            }],
        },
        resource_group_name="string",
        resource_name_="string",
        jwt_authenticator_name="string")
    
    const jwtauthenticatorResource = new azure_native.containerservice.JWTAuthenticator("jwtauthenticatorResource", {
        properties: {
            claimMappings: {
                username: {
                    expression: "string",
                },
                extra: [{
                    key: "string",
                    valueExpression: "string",
                }],
                groups: {
                    expression: "string",
                },
                uid: {
                    expression: "string",
                },
            },
            issuer: {
                audiences: ["string"],
                url: "string",
            },
            claimValidationRules: [{
                expression: "string",
                message: "string",
            }],
            userValidationRules: [{
                expression: "string",
                message: "string",
            }],
        },
        resourceGroupName: "string",
        resourceName: "string",
        jwtAuthenticatorName: "string",
    });
    
    type: azure-native:containerservice:JWTAuthenticator
    properties:
        jwtAuthenticatorName: string
        properties:
            claimMappings:
                extra:
                    - key: string
                      valueExpression: string
                groups:
                    expression: string
                uid:
                    expression: string
                username:
                    expression: string
            claimValidationRules:
                - expression: string
                  message: string
            issuer:
                audiences:
                    - string
                url: string
            userValidationRules:
                - expression: string
                  message: string
        resourceGroupName: string
        resourceName: string
    

    JWTAuthenticator Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The JWTAuthenticator resource accepts the following input properties:

    Properties Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorProperties
    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ResourceName string
    The name of the managed cluster resource.
    JwtAuthenticatorName string
    The name of the JWT authenticator.
    Properties JWTAuthenticatorPropertiesArgs
    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ResourceName string
    The name of the managed cluster resource.
    JwtAuthenticatorName string
    The name of the JWT authenticator.
    properties JWTAuthenticatorProperties
    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    resourceName String
    The name of the managed cluster resource.
    jwtAuthenticatorName String
    The name of the JWT authenticator.
    properties JWTAuthenticatorProperties
    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    resourceName string
    The name of the managed cluster resource.
    jwtAuthenticatorName string
    The name of the JWT authenticator.
    properties JWTAuthenticatorPropertiesArgs
    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    resource_name str
    The name of the managed cluster resource.
    jwt_authenticator_name str
    The name of the JWT authenticator.
    properties Property Map
    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    resourceName String
    The name of the managed cluster resource.
    jwtAuthenticatorName String
    The name of the JWT authenticator.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the JWTAuthenticator resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.ContainerService.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    JWTAuthenticatorClaimMappingExpression, JWTAuthenticatorClaimMappingExpressionArgs

    The claim mapping expression for JWTAuthenticator.
    Expression string
    The CEL expression used to access token claims.
    Expression string
    The CEL expression used to access token claims.
    expression String
    The CEL expression used to access token claims.
    expression string
    The CEL expression used to access token claims.
    expression str
    The CEL expression used to access token claims.
    expression String
    The CEL expression used to access token claims.

    JWTAuthenticatorClaimMappingExpressionResponse, JWTAuthenticatorClaimMappingExpressionResponseArgs

    The claim mapping expression for JWTAuthenticator.
    Expression string
    The CEL expression used to access token claims.
    Expression string
    The CEL expression used to access token claims.
    expression String
    The CEL expression used to access token claims.
    expression string
    The CEL expression used to access token claims.
    expression str
    The CEL expression used to access token claims.
    expression String
    The CEL expression used to access token claims.

    JWTAuthenticatorClaimMappings, JWTAuthenticatorClaimMappingsArgs

    The claim mappings for JWTAuthenticator.
    Username Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpression
    The expression to extract username attribute from the token claims.
    Extra List<Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorExtraClaimMappingExpression>
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    Groups Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpression
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    Uid Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpression
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    Username JWTAuthenticatorClaimMappingExpression
    The expression to extract username attribute from the token claims.
    Extra []JWTAuthenticatorExtraClaimMappingExpression
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    Groups JWTAuthenticatorClaimMappingExpression
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    Uid JWTAuthenticatorClaimMappingExpression
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username JWTAuthenticatorClaimMappingExpression
    The expression to extract username attribute from the token claims.
    extra List<JWTAuthenticatorExtraClaimMappingExpression>
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups JWTAuthenticatorClaimMappingExpression
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid JWTAuthenticatorClaimMappingExpression
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username JWTAuthenticatorClaimMappingExpression
    The expression to extract username attribute from the token claims.
    extra JWTAuthenticatorExtraClaimMappingExpression[]
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups JWTAuthenticatorClaimMappingExpression
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid JWTAuthenticatorClaimMappingExpression
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username JWTAuthenticatorClaimMappingExpression
    The expression to extract username attribute from the token claims.
    extra Sequence[JWTAuthenticatorExtraClaimMappingExpression]
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups JWTAuthenticatorClaimMappingExpression
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid JWTAuthenticatorClaimMappingExpression
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username Property Map
    The expression to extract username attribute from the token claims.
    extra List<Property Map>
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups Property Map
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid Property Map
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.

    JWTAuthenticatorClaimMappingsResponse, JWTAuthenticatorClaimMappingsResponseArgs

    The claim mappings for JWTAuthenticator.
    Username Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract username attribute from the token claims.
    Extra List<Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorExtraClaimMappingExpressionResponse>
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    Groups Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    Uid Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    Username JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract username attribute from the token claims.
    Extra []JWTAuthenticatorExtraClaimMappingExpressionResponse
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    Groups JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    Uid JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract username attribute from the token claims.
    extra List<JWTAuthenticatorExtraClaimMappingExpressionResponse>
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract username attribute from the token claims.
    extra JWTAuthenticatorExtraClaimMappingExpressionResponse[]
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract username attribute from the token claims.
    extra Sequence[JWTAuthenticatorExtraClaimMappingExpressionResponse]
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid JWTAuthenticatorClaimMappingExpressionResponse
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.
    username Property Map
    The expression to extract username attribute from the token claims.
    extra List<Property Map>
    The expression to extract extra attribute from the token claims. When not provided, no extra attributes are extracted from the token claims.
    groups Property Map
    The expression to extract groups attribute from the token claims. When not provided, no groups are extracted from the token claims.
    uid Property Map
    The expression to extract uid attribute from the token claims. When not provided, no uid is extracted from the token claims.

    JWTAuthenticatorExtraClaimMappingExpression, JWTAuthenticatorExtraClaimMappingExpressionArgs

    The extra claim mapping expression for JWTAuthenticator.
    Key string
    The key of the extra attribute.
    ValueExpression string
    The CEL expression used to extract the value of the extra attribute.
    Key string
    The key of the extra attribute.
    ValueExpression string
    The CEL expression used to extract the value of the extra attribute.
    key String
    The key of the extra attribute.
    valueExpression String
    The CEL expression used to extract the value of the extra attribute.
    key string
    The key of the extra attribute.
    valueExpression string
    The CEL expression used to extract the value of the extra attribute.
    key str
    The key of the extra attribute.
    value_expression str
    The CEL expression used to extract the value of the extra attribute.
    key String
    The key of the extra attribute.
    valueExpression String
    The CEL expression used to extract the value of the extra attribute.

    JWTAuthenticatorExtraClaimMappingExpressionResponse, JWTAuthenticatorExtraClaimMappingExpressionResponseArgs

    The extra claim mapping expression for JWTAuthenticator.
    Key string
    The key of the extra attribute.
    ValueExpression string
    The CEL expression used to extract the value of the extra attribute.
    Key string
    The key of the extra attribute.
    ValueExpression string
    The CEL expression used to extract the value of the extra attribute.
    key String
    The key of the extra attribute.
    valueExpression String
    The CEL expression used to extract the value of the extra attribute.
    key string
    The key of the extra attribute.
    valueExpression string
    The CEL expression used to extract the value of the extra attribute.
    key str
    The key of the extra attribute.
    value_expression str
    The CEL expression used to extract the value of the extra attribute.
    key String
    The key of the extra attribute.
    valueExpression String
    The CEL expression used to extract the value of the extra attribute.

    JWTAuthenticatorIssuer, JWTAuthenticatorIssuerArgs

    The OIDC issuer details for JWTAuthenticator.
    Audiences List<string>
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    Url string
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    Audiences []string
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    Url string
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences List<String>
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url String
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences string[]
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url string
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences Sequence[str]
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url str
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences List<String>
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url String
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.

    JWTAuthenticatorIssuerResponse, JWTAuthenticatorIssuerResponseArgs

    The OIDC issuer details for JWTAuthenticator.
    Audiences List<string>
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    Url string
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    Audiences []string
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    Url string
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences List<String>
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url String
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences string[]
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url string
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences Sequence[str]
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url str
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    audiences List<String>
    The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
    url String
    The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.

    JWTAuthenticatorProperties, JWTAuthenticatorPropertiesArgs

    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    ClaimMappings Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappings
    The mappings that define how user attributes are extracted from the token claims.
    Issuer Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorIssuer
    The JWT OIDC issuer details.
    ClaimValidationRules List<Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRule>
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    UserValidationRules List<Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRule>
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    ClaimMappings JWTAuthenticatorClaimMappings
    The mappings that define how user attributes are extracted from the token claims.
    Issuer JWTAuthenticatorIssuer
    The JWT OIDC issuer details.
    ClaimValidationRules []JWTAuthenticatorValidationRule
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    UserValidationRules []JWTAuthenticatorValidationRule
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claimMappings JWTAuthenticatorClaimMappings
    The mappings that define how user attributes are extracted from the token claims.
    issuer JWTAuthenticatorIssuer
    The JWT OIDC issuer details.
    claimValidationRules List<JWTAuthenticatorValidationRule>
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    userValidationRules List<JWTAuthenticatorValidationRule>
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claimMappings JWTAuthenticatorClaimMappings
    The mappings that define how user attributes are extracted from the token claims.
    issuer JWTAuthenticatorIssuer
    The JWT OIDC issuer details.
    claimValidationRules JWTAuthenticatorValidationRule[]
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    userValidationRules JWTAuthenticatorValidationRule[]
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claim_mappings JWTAuthenticatorClaimMappings
    The mappings that define how user attributes are extracted from the token claims.
    issuer JWTAuthenticatorIssuer
    The JWT OIDC issuer details.
    claim_validation_rules Sequence[JWTAuthenticatorValidationRule]
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    user_validation_rules Sequence[JWTAuthenticatorValidationRule]
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claimMappings Property Map
    The mappings that define how user attributes are extracted from the token claims.
    issuer Property Map
    The JWT OIDC issuer details.
    claimValidationRules List<Property Map>
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    userValidationRules List<Property Map>
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.

    JWTAuthenticatorPropertiesResponse, JWTAuthenticatorPropertiesResponseArgs

    The properties of JWTAuthenticator. For details on how to configure the properties of a JWT authenticator, please refer to the Kubernetes documentation: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration. Please note that not all fields available in the Kubernetes documentation are supported by AKS. For troubleshooting, please see https://aka.ms/aks-external-issuers-docs.
    ClaimMappings Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorClaimMappingsResponse
    The mappings that define how user attributes are extracted from the token claims.
    Issuer Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorIssuerResponse
    The JWT OIDC issuer details.
    ProvisioningState string
    The current provisioning state of the JWT authenticator.
    ClaimValidationRules List<Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRuleResponse>
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    UserValidationRules List<Pulumi.AzureNative.ContainerService.Inputs.JWTAuthenticatorValidationRuleResponse>
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    ClaimMappings JWTAuthenticatorClaimMappingsResponse
    The mappings that define how user attributes are extracted from the token claims.
    Issuer JWTAuthenticatorIssuerResponse
    The JWT OIDC issuer details.
    ProvisioningState string
    The current provisioning state of the JWT authenticator.
    ClaimValidationRules []JWTAuthenticatorValidationRuleResponse
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    UserValidationRules []JWTAuthenticatorValidationRuleResponse
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claimMappings JWTAuthenticatorClaimMappingsResponse
    The mappings that define how user attributes are extracted from the token claims.
    issuer JWTAuthenticatorIssuerResponse
    The JWT OIDC issuer details.
    provisioningState String
    The current provisioning state of the JWT authenticator.
    claimValidationRules List<JWTAuthenticatorValidationRuleResponse>
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    userValidationRules List<JWTAuthenticatorValidationRuleResponse>
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claimMappings JWTAuthenticatorClaimMappingsResponse
    The mappings that define how user attributes are extracted from the token claims.
    issuer JWTAuthenticatorIssuerResponse
    The JWT OIDC issuer details.
    provisioningState string
    The current provisioning state of the JWT authenticator.
    claimValidationRules JWTAuthenticatorValidationRuleResponse[]
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    userValidationRules JWTAuthenticatorValidationRuleResponse[]
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claim_mappings JWTAuthenticatorClaimMappingsResponse
    The mappings that define how user attributes are extracted from the token claims.
    issuer JWTAuthenticatorIssuerResponse
    The JWT OIDC issuer details.
    provisioning_state str
    The current provisioning state of the JWT authenticator.
    claim_validation_rules Sequence[JWTAuthenticatorValidationRuleResponse]
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    user_validation_rules Sequence[JWTAuthenticatorValidationRuleResponse]
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.
    claimMappings Property Map
    The mappings that define how user attributes are extracted from the token claims.
    issuer Property Map
    The JWT OIDC issuer details.
    provisioningState String
    The current provisioning state of the JWT authenticator.
    claimValidationRules List<Property Map>
    The rules that are applied to validate token claims to authenticate users. All the expressions must evaluate to true for validation to succeed.
    userValidationRules List<Property Map>
    The rules that are applied to the mapped user before completing authentication. All the expressions must evaluate to true for validation to succeed.

    JWTAuthenticatorValidationRule, JWTAuthenticatorValidationRuleArgs

    The validation rule for JWTAuthenticator.
    Expression string
    The CEL expression used to validate the claim or attribute.
    Message string
    The validation error message.
    Expression string
    The CEL expression used to validate the claim or attribute.
    Message string
    The validation error message.
    expression String
    The CEL expression used to validate the claim or attribute.
    message String
    The validation error message.
    expression string
    The CEL expression used to validate the claim or attribute.
    message string
    The validation error message.
    expression str
    The CEL expression used to validate the claim or attribute.
    message str
    The validation error message.
    expression String
    The CEL expression used to validate the claim or attribute.
    message String
    The validation error message.

    JWTAuthenticatorValidationRuleResponse, JWTAuthenticatorValidationRuleResponseArgs

    The validation rule for JWTAuthenticator.
    Expression string
    The CEL expression used to validate the claim or attribute.
    Message string
    The validation error message.
    Expression string
    The CEL expression used to validate the claim or attribute.
    Message string
    The validation error message.
    expression String
    The CEL expression used to validate the claim or attribute.
    message String
    The validation error message.
    expression string
    The CEL expression used to validate the claim or attribute.
    message string
    The validation error message.
    expression str
    The CEL expression used to validate the claim or attribute.
    message str
    The validation error message.
    expression String
    The CEL expression used to validate the claim or attribute.
    message String
    The validation error message.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:containerservice:JWTAuthenticator jwt1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/jwtAuthenticators/{jwtAuthenticatorName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate