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

akeyless.AuthMethodCert

Explore with Pulumi AI

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

    Cert Auth Method Resource

    Create AuthMethodCert Resource

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

    Constructor syntax

    new AuthMethodCert(name: string, args: AuthMethodCertArgs, opts?: CustomResourceOptions);
    @overload
    def AuthMethodCert(resource_name: str,
                       args: AuthMethodCertArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthMethodCert(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       unique_identifier: Optional[str] = None,
                       bound_organizational_units: Optional[Sequence[str]] = None,
                       certificate_data: Optional[str] = None,
                       bound_common_names: Optional[Sequence[str]] = None,
                       bound_dns_sans: Optional[Sequence[str]] = None,
                       bound_email_sans: Optional[Sequence[str]] = None,
                       bound_extensions: Optional[Sequence[str]] = None,
                       bound_ips: Optional[Sequence[str]] = None,
                       access_expires: Optional[float] = None,
                       auth_method_cert_id: Optional[str] = None,
                       delete_protection: Optional[str] = None,
                       bound_uri_sans: Optional[Sequence[str]] = None,
                       force_sub_claims: Optional[bool] = None,
                       gw_bound_ips: Optional[Sequence[str]] = None,
                       jwt_ttl: Optional[float] = None,
                       name: Optional[str] = None,
                       revoked_cert_ids: Optional[Sequence[str]] = None,
                       audit_logs_claims: Optional[Sequence[str]] = None)
    func NewAuthMethodCert(ctx *Context, name string, args AuthMethodCertArgs, opts ...ResourceOption) (*AuthMethodCert, error)
    public AuthMethodCert(string name, AuthMethodCertArgs args, CustomResourceOptions? opts = null)
    public AuthMethodCert(String name, AuthMethodCertArgs args)
    public AuthMethodCert(String name, AuthMethodCertArgs args, CustomResourceOptions options)
    
    type: akeyless:AuthMethodCert
    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 AuthMethodCertArgs
    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 AuthMethodCertArgs
    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 AuthMethodCertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthMethodCertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthMethodCertArgs
    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 authMethodCertResource = new Akeyless.AuthMethodCert("authMethodCertResource", new()
    {
        UniqueIdentifier = "string",
        BoundOrganizationalUnits = new[]
        {
            "string",
        },
        CertificateData = "string",
        BoundCommonNames = new[]
        {
            "string",
        },
        BoundDnsSans = new[]
        {
            "string",
        },
        BoundEmailSans = new[]
        {
            "string",
        },
        BoundExtensions = new[]
        {
            "string",
        },
        BoundIps = new[]
        {
            "string",
        },
        AccessExpires = 0,
        AuthMethodCertId = "string",
        DeleteProtection = "string",
        BoundUriSans = new[]
        {
            "string",
        },
        ForceSubClaims = false,
        GwBoundIps = new[]
        {
            "string",
        },
        JwtTtl = 0,
        Name = "string",
        RevokedCertIds = new[]
        {
            "string",
        },
        AuditLogsClaims = new[]
        {
            "string",
        },
    });
    
    example, err := akeyless.NewAuthMethodCert(ctx, "authMethodCertResource", &akeyless.AuthMethodCertArgs{
    	UniqueIdentifier: pulumi.String("string"),
    	BoundOrganizationalUnits: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CertificateData: pulumi.String("string"),
    	BoundCommonNames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BoundDnsSans: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BoundEmailSans: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BoundExtensions: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BoundIps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AccessExpires:    pulumi.Float64(0),
    	AuthMethodCertId: pulumi.String("string"),
    	DeleteProtection: pulumi.String("string"),
    	BoundUriSans: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ForceSubClaims: pulumi.Bool(false),
    	GwBoundIps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	JwtTtl: pulumi.Float64(0),
    	Name:   pulumi.String("string"),
    	RevokedCertIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AuditLogsClaims: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var authMethodCertResource = new AuthMethodCert("authMethodCertResource", AuthMethodCertArgs.builder()
        .uniqueIdentifier("string")
        .boundOrganizationalUnits("string")
        .certificateData("string")
        .boundCommonNames("string")
        .boundDnsSans("string")
        .boundEmailSans("string")
        .boundExtensions("string")
        .boundIps("string")
        .accessExpires(0)
        .authMethodCertId("string")
        .deleteProtection("string")
        .boundUriSans("string")
        .forceSubClaims(false)
        .gwBoundIps("string")
        .jwtTtl(0)
        .name("string")
        .revokedCertIds("string")
        .auditLogsClaims("string")
        .build());
    
    auth_method_cert_resource = akeyless.AuthMethodCert("authMethodCertResource",
        unique_identifier="string",
        bound_organizational_units=["string"],
        certificate_data="string",
        bound_common_names=["string"],
        bound_dns_sans=["string"],
        bound_email_sans=["string"],
        bound_extensions=["string"],
        bound_ips=["string"],
        access_expires=0,
        auth_method_cert_id="string",
        delete_protection="string",
        bound_uri_sans=["string"],
        force_sub_claims=False,
        gw_bound_ips=["string"],
        jwt_ttl=0,
        name="string",
        revoked_cert_ids=["string"],
        audit_logs_claims=["string"])
    
    const authMethodCertResource = new akeyless.AuthMethodCert("authMethodCertResource", {
        uniqueIdentifier: "string",
        boundOrganizationalUnits: ["string"],
        certificateData: "string",
        boundCommonNames: ["string"],
        boundDnsSans: ["string"],
        boundEmailSans: ["string"],
        boundExtensions: ["string"],
        boundIps: ["string"],
        accessExpires: 0,
        authMethodCertId: "string",
        deleteProtection: "string",
        boundUriSans: ["string"],
        forceSubClaims: false,
        gwBoundIps: ["string"],
        jwtTtl: 0,
        name: "string",
        revokedCertIds: ["string"],
        auditLogsClaims: ["string"],
    });
    
    type: akeyless:AuthMethodCert
    properties:
        accessExpires: 0
        auditLogsClaims:
            - string
        authMethodCertId: string
        boundCommonNames:
            - string
        boundDnsSans:
            - string
        boundEmailSans:
            - string
        boundExtensions:
            - string
        boundIps:
            - string
        boundOrganizationalUnits:
            - string
        boundUriSans:
            - string
        certificateData: string
        deleteProtection: string
        forceSubClaims: false
        gwBoundIps:
            - string
        jwtTtl: 0
        name: string
        revokedCertIds:
            - string
        uniqueIdentifier: string
    

    AuthMethodCert 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 AuthMethodCert 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)
    AuditLogsClaims List<string>
    Subclaims to include in audit logs
    AuthMethodCertId string
    The ID of this resource.
    BoundCommonNames List<string>
    A list of names. At least one must exist in the Common Name. Supports globbing.
    BoundDnsSans List<string>
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    BoundEmailSans List<string>
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    BoundExtensions List<string>
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    BoundIps List<string>
    A comma-separated CIDR block list to allow client access
    BoundOrganizationalUnits List<string>
    A list of Organizational Units names. At least one must exist in the OU field.
    BoundUriSans List<string>
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    CertificateData string
    The certificate data in base64, if no file was provided.
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    GwBoundIps List<string>
    A comma-separated CIDR block list as a trusted Gateway entity
    JwtTtl double
    Creds expiration time in minutes
    Name string
    Auth Method name
    RevokedCertIds List<string>
    A list of revoked cert ids
    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)
    AuditLogsClaims []string
    Subclaims to include in audit logs
    AuthMethodCertId string
    The ID of this resource.
    BoundCommonNames []string
    A list of names. At least one must exist in the Common Name. Supports globbing.
    BoundDnsSans []string
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    BoundEmailSans []string
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    BoundExtensions []string
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    BoundIps []string
    A comma-separated CIDR block list to allow client access
    BoundOrganizationalUnits []string
    A list of Organizational Units names. At least one must exist in the OU field.
    BoundUriSans []string
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    CertificateData string
    The certificate data in base64, if no file was provided.
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    GwBoundIps []string
    A comma-separated CIDR block list as a trusted Gateway entity
    JwtTtl float64
    Creds expiration time in minutes
    Name string
    Auth Method name
    RevokedCertIds []string
    A list of revoked cert ids
    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)
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodCertId String
    The ID of this resource.
    boundCommonNames List<String>
    A list of names. At least one must exist in the Common Name. Supports globbing.
    boundDnsSans List<String>
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    boundEmailSans List<String>
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    boundExtensions List<String>
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    boundIps List<String>
    A comma-separated CIDR block list to allow client access
    boundOrganizationalUnits List<String>
    A list of Organizational Units names. At least one must exist in the OU field.
    boundUriSans List<String>
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificateData String
    The certificate data in base64, if no file was provided.
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    gwBoundIps List<String>
    A comma-separated CIDR block list as a trusted Gateway entity
    jwtTtl Double
    Creds expiration time in minutes
    name String
    Auth Method name
    revokedCertIds List<String>
    A list of revoked cert ids
    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)
    auditLogsClaims string[]
    Subclaims to include in audit logs
    authMethodCertId string
    The ID of this resource.
    boundCommonNames string[]
    A list of names. At least one must exist in the Common Name. Supports globbing.
    boundDnsSans string[]
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    boundEmailSans string[]
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    boundExtensions string[]
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    boundIps string[]
    A comma-separated CIDR block list to allow client access
    boundOrganizationalUnits string[]
    A list of Organizational Units names. At least one must exist in the OU field.
    boundUriSans string[]
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificateData string
    The certificate data in base64, if no file was provided.
    deleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims boolean
    enforce role-association must include sub claims
    gwBoundIps string[]
    A comma-separated CIDR block list as a trusted Gateway entity
    jwtTtl number
    Creds expiration time in minutes
    name string
    Auth Method name
    revokedCertIds string[]
    A list of revoked cert ids
    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)
    audit_logs_claims Sequence[str]
    Subclaims to include in audit logs
    auth_method_cert_id str
    The ID of this resource.
    bound_common_names Sequence[str]
    A list of names. At least one must exist in the Common Name. Supports globbing.
    bound_dns_sans Sequence[str]
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    bound_email_sans Sequence[str]
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    bound_extensions Sequence[str]
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    bound_ips Sequence[str]
    A comma-separated CIDR block list to allow client access
    bound_organizational_units Sequence[str]
    A list of Organizational Units names. At least one must exist in the OU field.
    bound_uri_sans Sequence[str]
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificate_data str
    The certificate data in base64, if no file was provided.
    delete_protection str
    Protection from accidental deletion of this auth method, [true/false]
    force_sub_claims bool
    enforce role-association must include sub claims
    gw_bound_ips Sequence[str]
    A comma-separated CIDR block list as a trusted Gateway entity
    jwt_ttl float
    Creds expiration time in minutes
    name str
    Auth Method name
    revoked_cert_ids Sequence[str]
    A list of revoked cert ids
    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)
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodCertId String
    The ID of this resource.
    boundCommonNames List<String>
    A list of names. At least one must exist in the Common Name. Supports globbing.
    boundDnsSans List<String>
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    boundEmailSans List<String>
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    boundExtensions List<String>
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    boundIps List<String>
    A comma-separated CIDR block list to allow client access
    boundOrganizationalUnits List<String>
    A list of Organizational Units names. At least one must exist in the OU field.
    boundUriSans List<String>
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificateData String
    The certificate data in base64, if no file was provided.
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    gwBoundIps List<String>
    A comma-separated CIDR block list as a trusted Gateway entity
    jwtTtl Number
    Creds expiration time in minutes
    name String
    Auth Method name
    revokedCertIds List<String>
    A list of revoked cert ids

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AuthMethodCert 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 AuthMethodCert Resource

    Get an existing AuthMethodCert 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?: AuthMethodCertState, opts?: CustomResourceOptions): AuthMethodCert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_expires: Optional[float] = None,
            access_id: Optional[str] = None,
            audit_logs_claims: Optional[Sequence[str]] = None,
            auth_method_cert_id: Optional[str] = None,
            bound_common_names: Optional[Sequence[str]] = None,
            bound_dns_sans: Optional[Sequence[str]] = None,
            bound_email_sans: Optional[Sequence[str]] = None,
            bound_extensions: Optional[Sequence[str]] = None,
            bound_ips: Optional[Sequence[str]] = None,
            bound_organizational_units: Optional[Sequence[str]] = None,
            bound_uri_sans: Optional[Sequence[str]] = None,
            certificate_data: Optional[str] = None,
            delete_protection: Optional[str] = None,
            force_sub_claims: Optional[bool] = None,
            gw_bound_ips: Optional[Sequence[str]] = None,
            jwt_ttl: Optional[float] = None,
            name: Optional[str] = None,
            revoked_cert_ids: Optional[Sequence[str]] = None,
            unique_identifier: Optional[str] = None) -> AuthMethodCert
    func GetAuthMethodCert(ctx *Context, name string, id IDInput, state *AuthMethodCertState, opts ...ResourceOption) (*AuthMethodCert, error)
    public static AuthMethodCert Get(string name, Input<string> id, AuthMethodCertState? state, CustomResourceOptions? opts = null)
    public static AuthMethodCert get(String name, Output<String> id, AuthMethodCertState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:AuthMethodCert    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
    AuditLogsClaims List<string>
    Subclaims to include in audit logs
    AuthMethodCertId string
    The ID of this resource.
    BoundCommonNames List<string>
    A list of names. At least one must exist in the Common Name. Supports globbing.
    BoundDnsSans List<string>
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    BoundEmailSans List<string>
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    BoundExtensions List<string>
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    BoundIps List<string>
    A comma-separated CIDR block list to allow client access
    BoundOrganizationalUnits List<string>
    A list of Organizational Units names. At least one must exist in the OU field.
    BoundUriSans List<string>
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    CertificateData string
    The certificate data in base64, if no file was provided.
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    GwBoundIps List<string>
    A comma-separated CIDR block list as a trusted Gateway entity
    JwtTtl double
    Creds expiration time in minutes
    Name string
    Auth Method name
    RevokedCertIds List<string>
    A list of revoked cert ids
    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
    AuditLogsClaims []string
    Subclaims to include in audit logs
    AuthMethodCertId string
    The ID of this resource.
    BoundCommonNames []string
    A list of names. At least one must exist in the Common Name. Supports globbing.
    BoundDnsSans []string
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    BoundEmailSans []string
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    BoundExtensions []string
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    BoundIps []string
    A comma-separated CIDR block list to allow client access
    BoundOrganizationalUnits []string
    A list of Organizational Units names. At least one must exist in the OU field.
    BoundUriSans []string
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    CertificateData string
    The certificate data in base64, if no file was provided.
    DeleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    ForceSubClaims bool
    enforce role-association must include sub claims
    GwBoundIps []string
    A comma-separated CIDR block list as a trusted Gateway entity
    JwtTtl float64
    Creds expiration time in minutes
    Name string
    Auth Method name
    RevokedCertIds []string
    A list of revoked cert ids
    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
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodCertId String
    The ID of this resource.
    boundCommonNames List<String>
    A list of names. At least one must exist in the Common Name. Supports globbing.
    boundDnsSans List<String>
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    boundEmailSans List<String>
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    boundExtensions List<String>
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    boundIps List<String>
    A comma-separated CIDR block list to allow client access
    boundOrganizationalUnits List<String>
    A list of Organizational Units names. At least one must exist in the OU field.
    boundUriSans List<String>
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificateData String
    The certificate data in base64, if no file was provided.
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    gwBoundIps List<String>
    A comma-separated CIDR block list as a trusted Gateway entity
    jwtTtl Double
    Creds expiration time in minutes
    name String
    Auth Method name
    revokedCertIds List<String>
    A list of revoked cert ids
    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
    auditLogsClaims string[]
    Subclaims to include in audit logs
    authMethodCertId string
    The ID of this resource.
    boundCommonNames string[]
    A list of names. At least one must exist in the Common Name. Supports globbing.
    boundDnsSans string[]
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    boundEmailSans string[]
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    boundExtensions string[]
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    boundIps string[]
    A comma-separated CIDR block list to allow client access
    boundOrganizationalUnits string[]
    A list of Organizational Units names. At least one must exist in the OU field.
    boundUriSans string[]
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificateData string
    The certificate data in base64, if no file was provided.
    deleteProtection string
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims boolean
    enforce role-association must include sub claims
    gwBoundIps string[]
    A comma-separated CIDR block list as a trusted Gateway entity
    jwtTtl number
    Creds expiration time in minutes
    name string
    Auth Method name
    revokedCertIds string[]
    A list of revoked cert ids
    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
    audit_logs_claims Sequence[str]
    Subclaims to include in audit logs
    auth_method_cert_id str
    The ID of this resource.
    bound_common_names Sequence[str]
    A list of names. At least one must exist in the Common Name. Supports globbing.
    bound_dns_sans Sequence[str]
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    bound_email_sans Sequence[str]
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    bound_extensions Sequence[str]
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    bound_ips Sequence[str]
    A comma-separated CIDR block list to allow client access
    bound_organizational_units Sequence[str]
    A list of Organizational Units names. At least one must exist in the OU field.
    bound_uri_sans Sequence[str]
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificate_data str
    The certificate data in base64, if no file was provided.
    delete_protection str
    Protection from accidental deletion of this auth method, [true/false]
    force_sub_claims bool
    enforce role-association must include sub claims
    gw_bound_ips Sequence[str]
    A comma-separated CIDR block list as a trusted Gateway entity
    jwt_ttl float
    Creds expiration time in minutes
    name str
    Auth Method name
    revoked_cert_ids Sequence[str]
    A list of revoked cert ids
    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
    auditLogsClaims List<String>
    Subclaims to include in audit logs
    authMethodCertId String
    The ID of this resource.
    boundCommonNames List<String>
    A list of names. At least one must exist in the Common Name. Supports globbing.
    boundDnsSans List<String>
    A list of DNS names. At least one must exist in the SANs. Supports globbing.
    boundEmailSans List<String>
    A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
    boundExtensions List<String>
    A list of extensions formatted as 'oid:value'. Expects the extension value to be some type of ASN1 encoded string. All values much match. Supports globbing on 'value'.
    boundIps List<String>
    A comma-separated CIDR block list to allow client access
    boundOrganizationalUnits List<String>
    A list of Organizational Units names. At least one must exist in the OU field.
    boundUriSans List<String>
    A list of URIs. At least one must exist in the SANs. Supports globbing.
    certificateData String
    The certificate data in base64, if no file was provided.
    deleteProtection String
    Protection from accidental deletion of this auth method, [true/false]
    forceSubClaims Boolean
    enforce role-association must include sub claims
    gwBoundIps List<String>
    A comma-separated CIDR block list as a trusted Gateway entity
    jwtTtl Number
    Creds expiration time in minutes
    name String
    Auth Method name
    revokedCertIds List<String>
    A list of revoked cert ids
    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