UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

72 lines (71 loc) 2.78 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Configuration for JWT authenticator in the managed cluster. * * Uses Azure REST API version 2025-07-02-preview. */ export declare function getJWTAuthenticator(args: GetJWTAuthenticatorArgs, opts?: pulumi.InvokeOptions): Promise<GetJWTAuthenticatorResult>; export interface GetJWTAuthenticatorArgs { /** * The name of the JWT authenticator. */ jwtAuthenticatorName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the managed cluster resource. */ resourceName: string; } /** * Configuration for JWT authenticator in the managed cluster. */ export interface GetJWTAuthenticatorResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The name of the resource */ readonly name: string; /** * 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. */ readonly properties: outputs.containerservice.JWTAuthenticatorPropertiesResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.containerservice.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Configuration for JWT authenticator in the managed cluster. * * Uses Azure REST API version 2025-07-02-preview. */ export declare function getJWTAuthenticatorOutput(args: GetJWTAuthenticatorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetJWTAuthenticatorResult>; export interface GetJWTAuthenticatorOutputArgs { /** * The name of the JWT authenticator. */ jwtAuthenticatorName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the managed cluster resource. */ resourceName: pulumi.Input<string>; }