1. Packages
  2. Auth0 Provider
  3. API Docs
  4. getResourceServer
Auth0 v3.8.3 published on Wednesday, Nov 6, 2024 by Pulumi

auth0.getResourceServer

Explore with Pulumi AI

auth0 logo
Auth0 v3.8.3 published on Wednesday, Nov 6, 2024 by Pulumi

    Data source to retrieve a specific Auth0 resource server by resource_server_id or identifier.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as auth0 from "@pulumi/auth0";
    
    // An Auth0 Resource Server loaded using its identifier.
    const some-resource-server-by-identifier = auth0.getResourceServer({
        identifier: "https://my-api.com/v1",
    });
    // An Auth0 Resource Server loaded using its ID.
    const some-resource-server-by-id = auth0.getResourceServer({
        resourceServerId: "abcdefghkijklmnopqrstuvwxyz0123456789",
    });
    
    import pulumi
    import pulumi_auth0 as auth0
    
    # An Auth0 Resource Server loaded using its identifier.
    some_resource_server_by_identifier = auth0.get_resource_server(identifier="https://my-api.com/v1")
    # An Auth0 Resource Server loaded using its ID.
    some_resource_server_by_id = auth0.get_resource_server(resource_server_id="abcdefghkijklmnopqrstuvwxyz0123456789")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-auth0/sdk/v3/go/auth0"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// An Auth0 Resource Server loaded using its identifier.
    		_, err := auth0.LookupResourceServer(ctx, &auth0.LookupResourceServerArgs{
    			Identifier: pulumi.StringRef("https://my-api.com/v1"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// An Auth0 Resource Server loaded using its ID.
    		_, err = auth0.LookupResourceServer(ctx, &auth0.LookupResourceServerArgs{
    			ResourceServerId: pulumi.StringRef("abcdefghkijklmnopqrstuvwxyz0123456789"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Auth0 = Pulumi.Auth0;
    
    return await Deployment.RunAsync(() => 
    {
        // An Auth0 Resource Server loaded using its identifier.
        var some_resource_server_by_identifier = Auth0.GetResourceServer.Invoke(new()
        {
            Identifier = "https://my-api.com/v1",
        });
    
        // An Auth0 Resource Server loaded using its ID.
        var some_resource_server_by_id = Auth0.GetResourceServer.Invoke(new()
        {
            ResourceServerId = "abcdefghkijklmnopqrstuvwxyz0123456789",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.auth0.Auth0Functions;
    import com.pulumi.auth0.inputs.GetResourceServerArgs;
    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) {
            // An Auth0 Resource Server loaded using its identifier.
            final var some-resource-server-by-identifier = Auth0Functions.getResourceServer(GetResourceServerArgs.builder()
                .identifier("https://my-api.com/v1")
                .build());
    
            // An Auth0 Resource Server loaded using its ID.
            final var some-resource-server-by-id = Auth0Functions.getResourceServer(GetResourceServerArgs.builder()
                .resourceServerId("abcdefghkijklmnopqrstuvwxyz0123456789")
                .build());
    
        }
    }
    
    variables:
      # An Auth0 Resource Server loaded using its identifier.
      some-resource-server-by-identifier:
        fn::invoke:
          Function: auth0:getResourceServer
          Arguments:
            identifier: https://my-api.com/v1
      # An Auth0 Resource Server loaded using its ID.
      some-resource-server-by-id:
        fn::invoke:
          Function: auth0:getResourceServer
          Arguments:
            resourceServerId: abcdefghkijklmnopqrstuvwxyz0123456789
    

    Using getResourceServer

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getResourceServer(args: GetResourceServerArgs, opts?: InvokeOptions): Promise<GetResourceServerResult>
    function getResourceServerOutput(args: GetResourceServerOutputArgs, opts?: InvokeOptions): Output<GetResourceServerResult>
    def get_resource_server(identifier: Optional[str] = None,
                            resource_server_id: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetResourceServerResult
    def get_resource_server_output(identifier: Optional[pulumi.Input[str]] = None,
                            resource_server_id: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetResourceServerResult]
    func LookupResourceServer(ctx *Context, args *LookupResourceServerArgs, opts ...InvokeOption) (*LookupResourceServerResult, error)
    func LookupResourceServerOutput(ctx *Context, args *LookupResourceServerOutputArgs, opts ...InvokeOption) LookupResourceServerResultOutput

    > Note: This function is named LookupResourceServer in the Go SDK.

    public static class GetResourceServer 
    {
        public static Task<GetResourceServerResult> InvokeAsync(GetResourceServerArgs args, InvokeOptions? opts = null)
        public static Output<GetResourceServerResult> Invoke(GetResourceServerInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetResourceServerResult> getResourceServer(GetResourceServerArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: auth0:index/getResourceServer:getResourceServer
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Identifier string
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    ResourceServerId string
    The ID of the resource server. If not provided, identifier must be set.
    Identifier string
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    ResourceServerId string
    The ID of the resource server. If not provided, identifier must be set.
    identifier String
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resourceServerId String
    The ID of the resource server. If not provided, identifier must be set.
    identifier string
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resourceServerId string
    The ID of the resource server. If not provided, identifier must be set.
    identifier str
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resource_server_id str
    The ID of the resource server. If not provided, identifier must be set.
    identifier String
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resourceServerId String
    The ID of the resource server. If not provided, identifier must be set.

    getResourceServer Result

    The following output properties are available:

    AllowOfflineAccess bool
    Indicates whether refresh tokens can be issued for this resource server.
    AuthorizationDetails List<GetResourceServerAuthorizationDetail>
    Authorization details for this resource server.
    ConsentPolicy string
    Consent policy for this resource server. Options include transactional-authorization-with-mfa, or null to disable.
    EnforcePolicies bool
    If this setting is enabled, RBAC authorization policies will be enforced for this API. Role and permission assignments will be evaluated during the login transaction.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Friendly name for the resource server. Cannot include < or > characters.
    ProofOfPossessions List<GetResourceServerProofOfPossession>
    Configuration settings for proof-of-possession for this resource server.
    Scopes List<GetResourceServerScope>
    List of permissions (scopes) used by this resource server.
    SigningAlg string
    Algorithm used to sign JWTs. Options include HS256, RS256, and PS256.
    SigningSecret string
    Secret used to sign tokens when using symmetric algorithms (HS256).
    SkipConsentForVerifiableFirstPartyClients bool
    Indicates whether to skip user consent for applications flagged as first party.
    TokenDialect string
    Dialect of access tokens that should be issued for this resource server. Options include access_token, rfc9068_profile, access_token_authz, and rfc9068_profile_authz. access_token is a JWT containing standard Auth0 claims. rfc9068_profile is a JWT conforming to the IETF JWT Access Token Profile. access_token_authz is a JWT containing standard Auth0 claims, including RBAC permissions claims. rfc9068_profile_authz is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (enforce_policies) is enabled for this API. For more details, refer to Access Token Profiles.
    TokenEncryptions List<GetResourceServerTokenEncryption>
    Configuration for JSON Web Encryption(JWE) of tokens for this resource server.
    TokenLifetime int
    Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid.
    TokenLifetimeForWeb int
    Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the token_lifetime value.
    VerificationLocation string
    URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection.
    Identifier string
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    ResourceServerId string
    The ID of the resource server. If not provided, identifier must be set.
    AllowOfflineAccess bool
    Indicates whether refresh tokens can be issued for this resource server.
    AuthorizationDetails []GetResourceServerAuthorizationDetail
    Authorization details for this resource server.
    ConsentPolicy string
    Consent policy for this resource server. Options include transactional-authorization-with-mfa, or null to disable.
    EnforcePolicies bool
    If this setting is enabled, RBAC authorization policies will be enforced for this API. Role and permission assignments will be evaluated during the login transaction.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Friendly name for the resource server. Cannot include < or > characters.
    ProofOfPossessions []GetResourceServerProofOfPossession
    Configuration settings for proof-of-possession for this resource server.
    Scopes []GetResourceServerScopeType
    List of permissions (scopes) used by this resource server.
    SigningAlg string
    Algorithm used to sign JWTs. Options include HS256, RS256, and PS256.
    SigningSecret string
    Secret used to sign tokens when using symmetric algorithms (HS256).
    SkipConsentForVerifiableFirstPartyClients bool
    Indicates whether to skip user consent for applications flagged as first party.
    TokenDialect string
    Dialect of access tokens that should be issued for this resource server. Options include access_token, rfc9068_profile, access_token_authz, and rfc9068_profile_authz. access_token is a JWT containing standard Auth0 claims. rfc9068_profile is a JWT conforming to the IETF JWT Access Token Profile. access_token_authz is a JWT containing standard Auth0 claims, including RBAC permissions claims. rfc9068_profile_authz is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (enforce_policies) is enabled for this API. For more details, refer to Access Token Profiles.
    TokenEncryptions []GetResourceServerTokenEncryption
    Configuration for JSON Web Encryption(JWE) of tokens for this resource server.
    TokenLifetime int
    Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid.
    TokenLifetimeForWeb int
    Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the token_lifetime value.
    VerificationLocation string
    URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection.
    Identifier string
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    ResourceServerId string
    The ID of the resource server. If not provided, identifier must be set.
    allowOfflineAccess Boolean
    Indicates whether refresh tokens can be issued for this resource server.
    authorizationDetails List<GetResourceServerAuthorizationDetail>
    Authorization details for this resource server.
    consentPolicy String
    Consent policy for this resource server. Options include transactional-authorization-with-mfa, or null to disable.
    enforcePolicies Boolean
    If this setting is enabled, RBAC authorization policies will be enforced for this API. Role and permission assignments will be evaluated during the login transaction.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Friendly name for the resource server. Cannot include < or > characters.
    proofOfPossessions List<GetResourceServerProofOfPossession>
    Configuration settings for proof-of-possession for this resource server.
    scopes List<GetResourceServerScope>
    List of permissions (scopes) used by this resource server.
    signingAlg String
    Algorithm used to sign JWTs. Options include HS256, RS256, and PS256.
    signingSecret String
    Secret used to sign tokens when using symmetric algorithms (HS256).
    skipConsentForVerifiableFirstPartyClients Boolean
    Indicates whether to skip user consent for applications flagged as first party.
    tokenDialect String
    Dialect of access tokens that should be issued for this resource server. Options include access_token, rfc9068_profile, access_token_authz, and rfc9068_profile_authz. access_token is a JWT containing standard Auth0 claims. rfc9068_profile is a JWT conforming to the IETF JWT Access Token Profile. access_token_authz is a JWT containing standard Auth0 claims, including RBAC permissions claims. rfc9068_profile_authz is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (enforce_policies) is enabled for this API. For more details, refer to Access Token Profiles.
    tokenEncryptions List<GetResourceServerTokenEncryption>
    Configuration for JSON Web Encryption(JWE) of tokens for this resource server.
    tokenLifetime Integer
    Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid.
    tokenLifetimeForWeb Integer
    Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the token_lifetime value.
    verificationLocation String
    URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection.
    identifier String
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resourceServerId String
    The ID of the resource server. If not provided, identifier must be set.
    allowOfflineAccess boolean
    Indicates whether refresh tokens can be issued for this resource server.
    authorizationDetails GetResourceServerAuthorizationDetail[]
    Authorization details for this resource server.
    consentPolicy string
    Consent policy for this resource server. Options include transactional-authorization-with-mfa, or null to disable.
    enforcePolicies boolean
    If this setting is enabled, RBAC authorization policies will be enforced for this API. Role and permission assignments will be evaluated during the login transaction.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Friendly name for the resource server. Cannot include < or > characters.
    proofOfPossessions GetResourceServerProofOfPossession[]
    Configuration settings for proof-of-possession for this resource server.
    scopes GetResourceServerScope[]
    List of permissions (scopes) used by this resource server.
    signingAlg string
    Algorithm used to sign JWTs. Options include HS256, RS256, and PS256.
    signingSecret string
    Secret used to sign tokens when using symmetric algorithms (HS256).
    skipConsentForVerifiableFirstPartyClients boolean
    Indicates whether to skip user consent for applications flagged as first party.
    tokenDialect string
    Dialect of access tokens that should be issued for this resource server. Options include access_token, rfc9068_profile, access_token_authz, and rfc9068_profile_authz. access_token is a JWT containing standard Auth0 claims. rfc9068_profile is a JWT conforming to the IETF JWT Access Token Profile. access_token_authz is a JWT containing standard Auth0 claims, including RBAC permissions claims. rfc9068_profile_authz is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (enforce_policies) is enabled for this API. For more details, refer to Access Token Profiles.
    tokenEncryptions GetResourceServerTokenEncryption[]
    Configuration for JSON Web Encryption(JWE) of tokens for this resource server.
    tokenLifetime number
    Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid.
    tokenLifetimeForWeb number
    Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the token_lifetime value.
    verificationLocation string
    URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection.
    identifier string
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resourceServerId string
    The ID of the resource server. If not provided, identifier must be set.
    allow_offline_access bool
    Indicates whether refresh tokens can be issued for this resource server.
    authorization_details Sequence[GetResourceServerAuthorizationDetail]
    Authorization details for this resource server.
    consent_policy str
    Consent policy for this resource server. Options include transactional-authorization-with-mfa, or null to disable.
    enforce_policies bool
    If this setting is enabled, RBAC authorization policies will be enforced for this API. Role and permission assignments will be evaluated during the login transaction.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Friendly name for the resource server. Cannot include < or > characters.
    proof_of_possessions Sequence[GetResourceServerProofOfPossession]
    Configuration settings for proof-of-possession for this resource server.
    scopes Sequence[GetResourceServerScope]
    List of permissions (scopes) used by this resource server.
    signing_alg str
    Algorithm used to sign JWTs. Options include HS256, RS256, and PS256.
    signing_secret str
    Secret used to sign tokens when using symmetric algorithms (HS256).
    skip_consent_for_verifiable_first_party_clients bool
    Indicates whether to skip user consent for applications flagged as first party.
    token_dialect str
    Dialect of access tokens that should be issued for this resource server. Options include access_token, rfc9068_profile, access_token_authz, and rfc9068_profile_authz. access_token is a JWT containing standard Auth0 claims. rfc9068_profile is a JWT conforming to the IETF JWT Access Token Profile. access_token_authz is a JWT containing standard Auth0 claims, including RBAC permissions claims. rfc9068_profile_authz is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (enforce_policies) is enabled for this API. For more details, refer to Access Token Profiles.
    token_encryptions Sequence[GetResourceServerTokenEncryption]
    Configuration for JSON Web Encryption(JWE) of tokens for this resource server.
    token_lifetime int
    Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid.
    token_lifetime_for_web int
    Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the token_lifetime value.
    verification_location str
    URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection.
    identifier str
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resource_server_id str
    The ID of the resource server. If not provided, identifier must be set.
    allowOfflineAccess Boolean
    Indicates whether refresh tokens can be issued for this resource server.
    authorizationDetails List<Property Map>
    Authorization details for this resource server.
    consentPolicy String
    Consent policy for this resource server. Options include transactional-authorization-with-mfa, or null to disable.
    enforcePolicies Boolean
    If this setting is enabled, RBAC authorization policies will be enforced for this API. Role and permission assignments will be evaluated during the login transaction.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Friendly name for the resource server. Cannot include < or > characters.
    proofOfPossessions List<Property Map>
    Configuration settings for proof-of-possession for this resource server.
    scopes List<Property Map>
    List of permissions (scopes) used by this resource server.
    signingAlg String
    Algorithm used to sign JWTs. Options include HS256, RS256, and PS256.
    signingSecret String
    Secret used to sign tokens when using symmetric algorithms (HS256).
    skipConsentForVerifiableFirstPartyClients Boolean
    Indicates whether to skip user consent for applications flagged as first party.
    tokenDialect String
    Dialect of access tokens that should be issued for this resource server. Options include access_token, rfc9068_profile, access_token_authz, and rfc9068_profile_authz. access_token is a JWT containing standard Auth0 claims. rfc9068_profile is a JWT conforming to the IETF JWT Access Token Profile. access_token_authz is a JWT containing standard Auth0 claims, including RBAC permissions claims. rfc9068_profile_authz is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (enforce_policies) is enabled for this API. For more details, refer to Access Token Profiles.
    tokenEncryptions List<Property Map>
    Configuration for JSON Web Encryption(JWE) of tokens for this resource server.
    tokenLifetime Number
    Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid.
    tokenLifetimeForWeb Number
    Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the token_lifetime value.
    verificationLocation String
    URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection.
    identifier String
    Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, resource_server_id must be set.
    resourceServerId String
    The ID of the resource server. If not provided, identifier must be set.

    Supporting Types

    GetResourceServerAuthorizationDetail

    Disable bool
    Disable authorization details.
    Type string
    Type of authorization details.
    Disable bool
    Disable authorization details.
    Type string
    Type of authorization details.
    disable Boolean
    Disable authorization details.
    type String
    Type of authorization details.
    disable boolean
    Disable authorization details.
    type string
    Type of authorization details.
    disable bool
    Disable authorization details.
    type str
    Type of authorization details.
    disable Boolean
    Disable authorization details.
    type String
    Type of authorization details.

    GetResourceServerProofOfPossession

    Disable bool
    Disable proof-of-possession.
    Mechanism string
    Mechanism used for proof-of-possession. Only mtls is supported.
    Required bool
    Indicates whether proof-of-possession is required with this resource server.
    Disable bool
    Disable proof-of-possession.
    Mechanism string
    Mechanism used for proof-of-possession. Only mtls is supported.
    Required bool
    Indicates whether proof-of-possession is required with this resource server.
    disable Boolean
    Disable proof-of-possession.
    mechanism String
    Mechanism used for proof-of-possession. Only mtls is supported.
    required Boolean
    Indicates whether proof-of-possession is required with this resource server.
    disable boolean
    Disable proof-of-possession.
    mechanism string
    Mechanism used for proof-of-possession. Only mtls is supported.
    required boolean
    Indicates whether proof-of-possession is required with this resource server.
    disable bool
    Disable proof-of-possession.
    mechanism str
    Mechanism used for proof-of-possession. Only mtls is supported.
    required bool
    Indicates whether proof-of-possession is required with this resource server.
    disable Boolean
    Disable proof-of-possession.
    mechanism String
    Mechanism used for proof-of-possession. Only mtls is supported.
    required Boolean
    Indicates whether proof-of-possession is required with this resource server.

    GetResourceServerScope

    Description string
    Description of the permission (scope).
    Name string
    Name of the permission (scope). Examples include read:appointments or delete:appointments.
    Description string
    Description of the permission (scope).
    Name string
    Name of the permission (scope). Examples include read:appointments or delete:appointments.
    description String
    Description of the permission (scope).
    name String
    Name of the permission (scope). Examples include read:appointments or delete:appointments.
    description string
    Description of the permission (scope).
    name string
    Name of the permission (scope). Examples include read:appointments or delete:appointments.
    description str
    Description of the permission (scope).
    name str
    Name of the permission (scope). Examples include read:appointments or delete:appointments.
    description String
    Description of the permission (scope).
    name String
    Name of the permission (scope). Examples include read:appointments or delete:appointments.

    GetResourceServerTokenEncryption

    Disable bool
    Disable token encryption.
    EncryptionKeys List<GetResourceServerTokenEncryptionEncryptionKey>
    Authorization details for this resource server.
    Format string
    Format of the token encryption. Only compact-nested-jwe is supported.
    Disable bool
    Disable token encryption.
    EncryptionKeys []GetResourceServerTokenEncryptionEncryptionKey
    Authorization details for this resource server.
    Format string
    Format of the token encryption. Only compact-nested-jwe is supported.
    disable Boolean
    Disable token encryption.
    encryptionKeys List<GetResourceServerTokenEncryptionEncryptionKey>
    Authorization details for this resource server.
    format String
    Format of the token encryption. Only compact-nested-jwe is supported.
    disable boolean
    Disable token encryption.
    encryptionKeys GetResourceServerTokenEncryptionEncryptionKey[]
    Authorization details for this resource server.
    format string
    Format of the token encryption. Only compact-nested-jwe is supported.
    disable bool
    Disable token encryption.
    encryption_keys Sequence[GetResourceServerTokenEncryptionEncryptionKey]
    Authorization details for this resource server.
    format str
    Format of the token encryption. Only compact-nested-jwe is supported.
    disable Boolean
    Disable token encryption.
    encryptionKeys List<Property Map>
    Authorization details for this resource server.
    format String
    Format of the token encryption. Only compact-nested-jwe is supported.

    GetResourceServerTokenEncryptionEncryptionKey

    Algorithm string
    Algorithm used to encrypt the token.
    Kid string
    Key ID.
    Name string
    Name of the encryption key.
    Pem string
    PEM-formatted public key. Must be JSON escaped.
    Algorithm string
    Algorithm used to encrypt the token.
    Kid string
    Key ID.
    Name string
    Name of the encryption key.
    Pem string
    PEM-formatted public key. Must be JSON escaped.
    algorithm String
    Algorithm used to encrypt the token.
    kid String
    Key ID.
    name String
    Name of the encryption key.
    pem String
    PEM-formatted public key. Must be JSON escaped.
    algorithm string
    Algorithm used to encrypt the token.
    kid string
    Key ID.
    name string
    Name of the encryption key.
    pem string
    PEM-formatted public key. Must be JSON escaped.
    algorithm str
    Algorithm used to encrypt the token.
    kid str
    Key ID.
    name str
    Name of the encryption key.
    pem str
    PEM-formatted public key. Must be JSON escaped.
    algorithm String
    Algorithm used to encrypt the token.
    kid String
    Key ID.
    name String
    Name of the encryption key.
    pem String
    PEM-formatted public key. Must be JSON escaped.

    Package Details

    Repository
    Auth0 pulumi/pulumi-auth0
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the auth0 Terraform Provider.
    auth0 logo
    Auth0 v3.8.3 published on Wednesday, Nov 6, 2024 by Pulumi