1. Packages
  2. Akeyless Provider
  3. API Docs
  4. AuthMethodOidc
akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community

akeyless.AuthMethodOidc

Explore with Pulumi AI

akeyless logo
akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community

    OIDC Auth Method Resource

    Create AuthMethodOidc Resource

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

    Constructor syntax

    new AuthMethodOidc(name: string, args: AuthMethodOidcArgs, opts?: CustomResourceOptions);
    @overload
    def AuthMethodOidc(resource_name: str,
                       args: AuthMethodOidcArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthMethodOidc(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       unique_identifier: Optional[str] = None,
                       client_secret: Optional[str] = None,
                       force_sub_claims: Optional[bool] = None,
                       auth_method_oidc_id: Optional[str] = None,
                       bound_ips: Optional[Sequence[str]] = None,
                       client_id: Optional[str] = None,
                       access_expires: Optional[float] = None,
                       delete_protection: Optional[str] = None,
                       audit_logs_claims: Optional[Sequence[str]] = None,
                       issuer: Optional[str] = None,
                       jwt_ttl: Optional[float] = None,
                       name: Optional[str] = None,
                       required_scopes: Optional[Sequence[str]] = None,
                       required_scopes_prefix: Optional[str] = None,
                       allowed_redirect_uris: Optional[Sequence[str]] = None)
    func NewAuthMethodOidc(ctx *Context, name string, args AuthMethodOidcArgs, opts ...ResourceOption) (*AuthMethodOidc, error)
    public AuthMethodOidc(string name, AuthMethodOidcArgs args, CustomResourceOptions? opts = null)
    public AuthMethodOidc(String name, AuthMethodOidcArgs args)
    public AuthMethodOidc(String name, AuthMethodOidcArgs args, CustomResourceOptions options)
    
    type: akeyless:AuthMethodOidc
    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 AuthMethodOidcArgs
    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 AuthMethodOidcArgs
    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 AuthMethodOidcArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthMethodOidcArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthMethodOidcArgs
    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 authMethodOidcResource = new Akeyless.AuthMethodOidc("authMethodOidcResource", new()
    {
        UniqueIdentifier = "string",
        ClientSecret = "string",
        ForceSubClaims = false,
        AuthMethodOidcId = "string",
        BoundIps = new[]
        {
            "string",
        },
        ClientId = "string",
        AccessExpires = 0,
        DeleteProtection = "string",
        AuditLogsClaims = new[]
        {
            "string",
        },
        Issuer = "string",
        JwtTtl = 0,
        Name = "string",
        RequiredScopes = new[]
        {
            "string",
        },
        RequiredScopesPrefix = "string",
        AllowedRedirectUris = new[]
        {
            "string",
        },
    });
    
    example, err := akeyless.NewAuthMethodOidc(ctx, "authMethodOidcResource", &akeyless.AuthMethodOidcArgs{
    	UniqueIdentifier: pulumi.String("string"),
    	ClientSecret:     pulumi.String("string"),
    	ForceSubClaims:   pulumi.Bool(false),
    	AuthMethodOidcId: pulumi.String("string"),
    	BoundIps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ClientId:         pulumi.String("string"),
    	AccessExpires:    pulumi.Float64(0),
    	DeleteProtection: pulumi.String("string"),
    	AuditLogsClaims: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Issuer: pulumi.String("string"),
    	JwtTtl: pulumi.Float64(0),
    	Name:   pulumi.String("string"),
    	RequiredScopes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RequiredScopesPrefix: pulumi.String("string"),
    	AllowedRedirectUris: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var authMethodOidcResource = new AuthMethodOidc("authMethodOidcResource", AuthMethodOidcArgs.builder()
        .uniqueIdentifier("string")
        .clientSecret("string")
        .forceSubClaims(false)
        .authMethodOidcId("string")
        .boundIps("string")
        .clientId("string")
        .accessExpires(0)
        .deleteProtection("string")
        .auditLogsClaims("string")
        .issuer("string")
        .jwtTtl(0)
        .name("string")
        .requiredScopes("string")
        .requiredScopesPrefix("string")
        .allowedRedirectUris("string")
        .build());
    
    auth_method_oidc_resource = akeyless.AuthMethodOidc("authMethodOidcResource",
        unique_identifier="string",
        client_secret="string",
        force_sub_claims=False,
        auth_method_oidc_id="string",
        bound_ips=["string"],
        client_id="string",
        access_expires=0,
        delete_protection="string",
        audit_logs_claims=["string"],
        issuer="string",
        jwt_ttl=0,
        name="string",
        required_scopes=["string"],
        required_scopes_prefix="string",
        allowed_redirect_uris=["string"])
    
    const authMethodOidcResource = new akeyless.AuthMethodOidc("authMethodOidcResource", {
        uniqueIdentifier: "string",
        clientSecret: "string",
        forceSubClaims: false,
        authMethodOidcId: "string",
        boundIps: ["string"],
        clientId: "string",
        accessExpires: 0,
        deleteProtection: "string",
        auditLogsClaims: ["string"],
        issuer: "string",
        jwtTtl: 0,
        name: "string",
        requiredScopes: ["string"],
        requiredScopesPrefix: "string",
        allowedRedirectUris: ["string"],
    });
    
    type: akeyless:AuthMethodOidc
    properties:
        accessExpires: 0
        allowedRedirectUris:
            - string
        auditLogsClaims:
            - string
        authMethodOidcId: string
        boundIps:
            - string
        clientId: string
        clientSecret: string
        deleteProtection: string
        forceSubClaims: false
        issuer: string
        jwtTtl: 0
        name: string
        requiredScopes:
            - string
        requiredScopesPrefix: string
        uniqueIdentifier: string
    

    AuthMethodOidc 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 AuthMethodOidc resource accepts the following input properties:

    UniqueIdentifier string
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    AccessExpires double
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    AllowedRedirectUris List<string>
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    AuditLogsClaims List<string>
    Subclaims to include in audit logs
    AuthMethodOidcId string
    The ID of this resource.
    BoundIps List<string>
    A CIDR whitelist with the IPs that the access is restricted to
    ClientId string
    Client ID
    ClientSecret string
    Client Secret
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    Issuer string
    Issuer URL
    JwtTtl double
    Creds expiration time in minutes
    Name string
    Auth Method name
    RequiredScopes List<string>
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    RequiredScopesPrefix string
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    UniqueIdentifier string
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    AccessExpires float64
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    AllowedRedirectUris []string
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    AuditLogsClaims []string
    Subclaims to include in audit logs
    AuthMethodOidcId string
    The ID of this resource.
    BoundIps []string
    A CIDR whitelist with the IPs that the access is restricted to
    ClientId string
    Client ID
    ClientSecret string
    Client Secret
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    Issuer string
    Issuer URL
    JwtTtl float64
    Creds expiration time in minutes
    Name string
    Auth Method name
    RequiredScopes []string
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    RequiredScopesPrefix string
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    uniqueIdentifier String
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    accessExpires Double
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    allowedRedirectUris List<String>
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodOidcId String
    The ID of this resource.
    boundIps List<String>
    A CIDR whitelist with the IPs that the access is restricted to
    clientId String
    Client ID
    clientSecret String
    Client Secret
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    issuer String
    Issuer URL
    jwtTtl Double
    Creds expiration time in minutes
    name String
    Auth Method name
    requiredScopes List<String>
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    requiredScopesPrefix String
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    uniqueIdentifier string
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    accessExpires number
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    allowedRedirectUris string[]
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    auditLogsClaims string[]
    Subclaims to include in audit logs
    authMethodOidcId string
    The ID of this resource.
    boundIps string[]
    A CIDR whitelist with the IPs that the access is restricted to
    clientId string
    Client ID
    clientSecret string
    Client Secret
    deleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims boolean
    enforce role-association must include sub claims
    issuer string
    Issuer URL
    jwtTtl number
    Creds expiration time in minutes
    name string
    Auth Method name
    requiredScopes string[]
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    requiredScopesPrefix string
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    unique_identifier str
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    access_expires float
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    allowed_redirect_uris Sequence[str]
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    audit_logs_claims Sequence[str]
    Subclaims to include in audit logs
    auth_method_oidc_id str
    The ID of this resource.
    bound_ips Sequence[str]
    A CIDR whitelist with the IPs that the access is restricted to
    client_id str
    Client ID
    client_secret str
    Client Secret
    delete_protection str
    Protection from accidental deletion of this auth method, [true/false]
    force_sub_claims bool
    enforce role-association must include sub claims
    issuer str
    Issuer URL
    jwt_ttl float
    Creds expiration time in minutes
    name str
    Auth Method name
    required_scopes Sequence[str]
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    required_scopes_prefix str
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    uniqueIdentifier String
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    accessExpires Number
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    allowedRedirectUris List<String>
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodOidcId String
    The ID of this resource.
    boundIps List<String>
    A CIDR whitelist with the IPs that the access is restricted to
    clientId String
    Client ID
    clientSecret String
    Client Secret
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    issuer String
    Issuer URL
    jwtTtl Number
    Creds expiration time in minutes
    name String
    Auth Method name
    requiredScopes List<String>
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    requiredScopesPrefix String
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)

    Outputs

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

    AccessId string
    Auth Method access ID
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessId string
    Auth Method access ID
    Id string
    The provider-assigned unique ID for this managed resource.
    accessId String
    Auth Method access ID
    id String
    The provider-assigned unique ID for this managed resource.
    accessId string
    Auth Method access ID
    id string
    The provider-assigned unique ID for this managed resource.
    access_id str
    Auth Method access ID
    id str
    The provider-assigned unique ID for this managed resource.
    accessId String
    Auth Method access ID
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AuthMethodOidc Resource

    Get an existing AuthMethodOidc resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AuthMethodOidcState, opts?: CustomResourceOptions): AuthMethodOidc
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_expires: Optional[float] = None,
            access_id: Optional[str] = None,
            allowed_redirect_uris: Optional[Sequence[str]] = None,
            audit_logs_claims: Optional[Sequence[str]] = None,
            auth_method_oidc_id: Optional[str] = None,
            bound_ips: Optional[Sequence[str]] = None,
            client_id: Optional[str] = None,
            client_secret: Optional[str] = None,
            delete_protection: Optional[str] = None,
            force_sub_claims: Optional[bool] = None,
            issuer: Optional[str] = None,
            jwt_ttl: Optional[float] = None,
            name: Optional[str] = None,
            required_scopes: Optional[Sequence[str]] = None,
            required_scopes_prefix: Optional[str] = None,
            unique_identifier: Optional[str] = None) -> AuthMethodOidc
    func GetAuthMethodOidc(ctx *Context, name string, id IDInput, state *AuthMethodOidcState, opts ...ResourceOption) (*AuthMethodOidc, error)
    public static AuthMethodOidc Get(string name, Input<string> id, AuthMethodOidcState? state, CustomResourceOptions? opts = null)
    public static AuthMethodOidc get(String name, Output<String> id, AuthMethodOidcState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:AuthMethodOidc    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccessExpires double
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    AccessId string
    Auth Method access ID
    AllowedRedirectUris List<string>
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    AuditLogsClaims List<string>
    Subclaims to include in audit logs
    AuthMethodOidcId string
    The ID of this resource.
    BoundIps List<string>
    A CIDR whitelist with the IPs that the access is restricted to
    ClientId string
    Client ID
    ClientSecret string
    Client Secret
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    Issuer string
    Issuer URL
    JwtTtl double
    Creds expiration time in minutes
    Name string
    Auth Method name
    RequiredScopes List<string>
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    RequiredScopesPrefix string
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    UniqueIdentifier string
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    AccessExpires float64
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    AccessId string
    Auth Method access ID
    AllowedRedirectUris []string
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    AuditLogsClaims []string
    Subclaims to include in audit logs
    AuthMethodOidcId string
    The ID of this resource.
    BoundIps []string
    A CIDR whitelist with the IPs that the access is restricted to
    ClientId string
    Client ID
    ClientSecret string
    Client Secret
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    Issuer string
    Issuer URL
    JwtTtl float64
    Creds expiration time in minutes
    Name string
    Auth Method name
    RequiredScopes []string
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    RequiredScopesPrefix string
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    UniqueIdentifier string
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    accessExpires Double
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    accessId String
    Auth Method access ID
    allowedRedirectUris List<String>
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodOidcId String
    The ID of this resource.
    boundIps List<String>
    A CIDR whitelist with the IPs that the access is restricted to
    clientId String
    Client ID
    clientSecret String
    Client Secret
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    issuer String
    Issuer URL
    jwtTtl Double
    Creds expiration time in minutes
    name String
    Auth Method name
    requiredScopes List<String>
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    requiredScopesPrefix String
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    uniqueIdentifier String
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    accessExpires number
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    accessId string
    Auth Method access ID
    allowedRedirectUris string[]
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    auditLogsClaims string[]
    Subclaims to include in audit logs
    authMethodOidcId string
    The ID of this resource.
    boundIps string[]
    A CIDR whitelist with the IPs that the access is restricted to
    clientId string
    Client ID
    clientSecret string
    Client Secret
    deleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims boolean
    enforce role-association must include sub claims
    issuer string
    Issuer URL
    jwtTtl number
    Creds expiration time in minutes
    name string
    Auth Method name
    requiredScopes string[]
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    requiredScopesPrefix string
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    uniqueIdentifier string
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    access_expires float
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    access_id str
    Auth Method access ID
    allowed_redirect_uris Sequence[str]
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    audit_logs_claims Sequence[str]
    Subclaims to include in audit logs
    auth_method_oidc_id str
    The ID of this resource.
    bound_ips Sequence[str]
    A CIDR whitelist with the IPs that the access is restricted to
    client_id str
    Client ID
    client_secret str
    Client Secret
    delete_protection str
    Protection from accidental deletion of this auth method, [true/false]
    force_sub_claims bool
    enforce role-association must include sub claims
    issuer str
    Issuer URL
    jwt_ttl float
    Creds expiration time in minutes
    name str
    Auth Method name
    required_scopes Sequence[str]
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    required_scopes_prefix str
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    unique_identifier str
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.
    accessExpires Number
    Access expiration date in Unix timestamp (select 0 for access without expiry date)
    accessId String
    Auth Method access ID
    allowedRedirectUris List<String>
    Allowed redirect URIs after the authentication (default is https://console.akeyless.io/login-oidc to enable OIDC via Akeyless Console and http://127.0.0.1:* to enable OIDC via akeyless CLI)
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodOidcId String
    The ID of this resource.
    boundIps List<String>
    A CIDR whitelist with the IPs that the access is restricted to
    clientId String
    Client ID
    clientSecret String
    Client Secret
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    issuer String
    Issuer URL
    jwtTtl Number
    Creds expiration time in minutes
    name String
    Auth Method name
    requiredScopes List<String>
    Required scopes that the oidc method will request from the oidc provider and the user must approve
    requiredScopesPrefix String
    A prefix to add to all required-scopes when requesting them from the oidc server (for example, azure's Application ID URI)
    uniqueIdentifier String
    A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a sub claim that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.

    Package Details

    Repository
    akeyless akeyless-community/terraform-provider-akeyless
    License
    Notes
    This Pulumi package is based on the akeyless Terraform Provider.
    akeyless logo
    akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community