1. Packages
  2. Packages
  3. Akeyless Provider
  4. API Docs
  5. AuthMethodCert
Viewing docs for akeyless 2.0.1
published on Monday, Apr 27, 2026 by akeyless-community
Viewing docs for akeyless 2.0.1
published on Monday, Apr 27, 2026 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,
                       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,
                       delete_protection: Optional[str] = None,
                       allowed_cors: Optional[str] = None,
                       bound_uri_sans: Optional[Sequence[str]] = None,
                       access_expires: Optional[float] = None,
                       description: Optional[str] = None,
                       expiration_event_ins: 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,
                       product_types: Optional[Sequence[str]] = None,
                       revoked_cert_ids: Optional[Sequence[str]] = None,
                       allowed_client_types: 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",
        AuditLogsClaims = new[]
        {
            "string",
        },
        AuthMethodCertId = "string",
        BoundCommonNames = new[]
        {
            "string",
        },
        BoundDnsSans = new[]
        {
            "string",
        },
        BoundEmailSans = new[]
        {
            "string",
        },
        BoundExtensions = new[]
        {
            "string",
        },
        BoundIps = new[]
        {
            "string",
        },
        DeleteProtection = "string",
        AllowedCors = "string",
        BoundUriSans = new[]
        {
            "string",
        },
        AccessExpires = 0,
        Description = "string",
        ExpirationEventIns = new[]
        {
            "string",
        },
        ForceSubClaims = false,
        GwBoundIps = new[]
        {
            "string",
        },
        JwtTtl = 0,
        Name = "string",
        ProductTypes = new[]
        {
            "string",
        },
        RevokedCertIds = new[]
        {
            "string",
        },
        AllowedClientTypes = new[]
        {
            "string",
        },
    });
    
    example, err := akeyless.NewAuthMethodCert(ctx, "authMethodCertResource", &akeyless.AuthMethodCertArgs{
    	UniqueIdentifier: pulumi.String("string"),
    	BoundOrganizationalUnits: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CertificateData: pulumi.String("string"),
    	AuditLogsClaims: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AuthMethodCertId: 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"),
    	},
    	DeleteProtection: pulumi.String("string"),
    	AllowedCors:      pulumi.String("string"),
    	BoundUriSans: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AccessExpires: pulumi.Float64(0),
    	Description:   pulumi.String("string"),
    	ExpirationEventIns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ForceSubClaims: pulumi.Bool(false),
    	GwBoundIps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	JwtTtl: pulumi.Float64(0),
    	Name:   pulumi.String("string"),
    	ProductTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RevokedCertIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AllowedClientTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var authMethodCertResource = new AuthMethodCert("authMethodCertResource", AuthMethodCertArgs.builder()
        .uniqueIdentifier("string")
        .boundOrganizationalUnits("string")
        .certificateData("string")
        .auditLogsClaims("string")
        .authMethodCertId("string")
        .boundCommonNames("string")
        .boundDnsSans("string")
        .boundEmailSans("string")
        .boundExtensions("string")
        .boundIps("string")
        .deleteProtection("string")
        .allowedCors("string")
        .boundUriSans("string")
        .accessExpires(0.0)
        .description("string")
        .expirationEventIns("string")
        .forceSubClaims(false)
        .gwBoundIps("string")
        .jwtTtl(0.0)
        .name("string")
        .productTypes("string")
        .revokedCertIds("string")
        .allowedClientTypes("string")
        .build());
    
    auth_method_cert_resource = akeyless.AuthMethodCert("authMethodCertResource",
        unique_identifier="string",
        bound_organizational_units=["string"],
        certificate_data="string",
        audit_logs_claims=["string"],
        auth_method_cert_id="string",
        bound_common_names=["string"],
        bound_dns_sans=["string"],
        bound_email_sans=["string"],
        bound_extensions=["string"],
        bound_ips=["string"],
        delete_protection="string",
        allowed_cors="string",
        bound_uri_sans=["string"],
        access_expires=float(0),
        description="string",
        expiration_event_ins=["string"],
        force_sub_claims=False,
        gw_bound_ips=["string"],
        jwt_ttl=float(0),
        name="string",
        product_types=["string"],
        revoked_cert_ids=["string"],
        allowed_client_types=["string"])
    
    const authMethodCertResource = new akeyless.AuthMethodCert("authMethodCertResource", {
        uniqueIdentifier: "string",
        boundOrganizationalUnits: ["string"],
        certificateData: "string",
        auditLogsClaims: ["string"],
        authMethodCertId: "string",
        boundCommonNames: ["string"],
        boundDnsSans: ["string"],
        boundEmailSans: ["string"],
        boundExtensions: ["string"],
        boundIps: ["string"],
        deleteProtection: "string",
        allowedCors: "string",
        boundUriSans: ["string"],
        accessExpires: 0,
        description: "string",
        expirationEventIns: ["string"],
        forceSubClaims: false,
        gwBoundIps: ["string"],
        jwtTtl: 0,
        name: "string",
        productTypes: ["string"],
        revokedCertIds: ["string"],
        allowedClientTypes: ["string"],
    });
    
    type: akeyless:AuthMethodCert
    properties:
        accessExpires: 0
        allowedClientTypes:
            - string
        allowedCors: string
        auditLogsClaims:
            - string
        authMethodCertId: string
        boundCommonNames:
            - string
        boundDnsSans:
            - string
        boundEmailSans:
            - string
        boundExtensions:
            - string
        boundIps:
            - string
        boundOrganizationalUnits:
            - string
        boundUriSans:
            - string
        certificateData: string
        deleteProtection: string
        description: string
        expirationEventIns:
            - string
        forceSubClaims: false
        gwBoundIps:
            - string
        jwtTtl: 0
        name: string
        productTypes:
            - 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, such as commonname or organizationalunit 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)
    AllowedClientTypes List<string>
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    AllowedCors string
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    AuditLogsClaims List<string>
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    Description string
    Auth Method description
    ExpirationEventIns List<string>
    How many days before the expiration of the auth method would you like to be notified.
    ForceSubClaims bool
    if true: enforce role-association must include sub claims
    GwBoundIps List<string>
    A CIDR whitelist with the GW IPs that the access is restricted to
    JwtTtl double
    Jwt TTL
    Name string
    Auth Method name
    ProductTypes List<string>
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    RevokedCertIds List<string>
    A list of revoked cert ids
    UniqueIdentifier string
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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)
    AllowedClientTypes []string
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    AllowedCors string
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    AuditLogsClaims []string
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    Description string
    Auth Method description
    ExpirationEventIns []string
    How many days before the expiration of the auth method would you like to be notified.
    ForceSubClaims bool
    if true: enforce role-association must include sub claims
    GwBoundIps []string
    A CIDR whitelist with the GW IPs that the access is restricted to
    JwtTtl float64
    Jwt TTL
    Name string
    Auth Method name
    ProductTypes []string
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    RevokedCertIds []string
    A list of revoked cert ids
    uniqueIdentifier String
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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)
    allowedClientTypes List<String>
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowedCors String
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    auditLogsClaims List<String>
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description String
    Auth Method description
    expirationEventIns List<String>
    How many days before the expiration of the auth method would you like to be notified.
    forceSubClaims Boolean
    if true: enforce role-association must include sub claims
    gwBoundIps List<String>
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwtTtl Double
    Jwt TTL
    name String
    Auth Method name
    productTypes List<String>
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    revokedCertIds List<String>
    A list of revoked cert ids
    uniqueIdentifier string
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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)
    allowedClientTypes string[]
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowedCors string
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    auditLogsClaims string[]
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description string
    Auth Method description
    expirationEventIns string[]
    How many days before the expiration of the auth method would you like to be notified.
    forceSubClaims boolean
    if true: enforce role-association must include sub claims
    gwBoundIps string[]
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwtTtl number
    Jwt TTL
    name string
    Auth Method name
    productTypes string[]
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    revokedCertIds string[]
    A list of revoked cert ids
    unique_identifier str
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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_client_types Sequence[str]
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowed_cors str
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    audit_logs_claims Sequence[str]
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description str
    Auth Method description
    expiration_event_ins Sequence[str]
    How many days before the expiration of the auth method would you like to be notified.
    force_sub_claims bool
    if true: enforce role-association must include sub claims
    gw_bound_ips Sequence[str]
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwt_ttl float
    Jwt TTL
    name str
    Auth Method name
    product_types Sequence[str]
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    revoked_cert_ids Sequence[str]
    A list of revoked cert ids
    uniqueIdentifier String
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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)
    allowedClientTypes List<String>
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowedCors String
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    auditLogsClaims List<String>
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description String
    Auth Method description
    expirationEventIns List<String>
    How many days before the expiration of the auth method would you like to be notified.
    forceSubClaims Boolean
    if true: enforce role-association must include sub claims
    gwBoundIps List<String>
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwtTtl Number
    Jwt TTL
    name String
    Auth Method name
    productTypes List<String>
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    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,
            allowed_client_types: Optional[Sequence[str]] = None,
            allowed_cors: 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,
            description: Optional[str] = None,
            expiration_event_ins: 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,
            product_types: Optional[Sequence[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
    AllowedClientTypes List<string>
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    AllowedCors string
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    AuditLogsClaims List<string>
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    Description string
    Auth Method description
    ExpirationEventIns List<string>
    How many days before the expiration of the auth method would you like to be notified.
    ForceSubClaims bool
    if true: enforce role-association must include sub claims
    GwBoundIps List<string>
    A CIDR whitelist with the GW IPs that the access is restricted to
    JwtTtl double
    Jwt TTL
    Name string
    Auth Method name
    ProductTypes List<string>
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    RevokedCertIds List<string>
    A list of revoked cert ids
    UniqueIdentifier string
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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
    AllowedClientTypes []string
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    AllowedCors string
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    AuditLogsClaims []string
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    Description string
    Auth Method description
    ExpirationEventIns []string
    How many days before the expiration of the auth method would you like to be notified.
    ForceSubClaims bool
    if true: enforce role-association must include sub claims
    GwBoundIps []string
    A CIDR whitelist with the GW IPs that the access is restricted to
    JwtTtl float64
    Jwt TTL
    Name string
    Auth Method name
    ProductTypes []string
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    RevokedCertIds []string
    A list of revoked cert ids
    UniqueIdentifier string
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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
    allowedClientTypes List<String>
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowedCors String
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    auditLogsClaims List<String>
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description String
    Auth Method description
    expirationEventIns List<String>
    How many days before the expiration of the auth method would you like to be notified.
    forceSubClaims Boolean
    if true: enforce role-association must include sub claims
    gwBoundIps List<String>
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwtTtl Double
    Jwt TTL
    name String
    Auth Method name
    productTypes List<String>
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    revokedCertIds List<String>
    A list of revoked cert ids
    uniqueIdentifier String
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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
    allowedClientTypes string[]
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowedCors string
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    auditLogsClaims string[]
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description string
    Auth Method description
    expirationEventIns string[]
    How many days before the expiration of the auth method would you like to be notified.
    forceSubClaims boolean
    if true: enforce role-association must include sub claims
    gwBoundIps string[]
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwtTtl number
    Jwt TTL
    name string
    Auth Method name
    productTypes string[]
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    revokedCertIds string[]
    A list of revoked cert ids
    uniqueIdentifier string
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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_client_types Sequence[str]
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowed_cors str
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    audit_logs_claims Sequence[str]
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description str
    Auth Method description
    expiration_event_ins Sequence[str]
    How many days before the expiration of the auth method would you like to be notified.
    force_sub_claims bool
    if true: enforce role-association must include sub claims
    gw_bound_ips Sequence[str]
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwt_ttl float
    Jwt TTL
    name str
    Auth Method name
    product_types Sequence[str]
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    revoked_cert_ids Sequence[str]
    A list of revoked cert ids
    unique_identifier str
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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
    allowedClientTypes List<String>
    limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
    allowedCors String
    Comma separated list of allowed CORS domains to be validated as part of the authentication flow.
    auditLogsClaims List<String>
    Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
    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 CIDR whitelist with the IPs that the access is restricted to
    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 object [true/false]
    description String
    Auth Method description
    expirationEventIns List<String>
    How many days before the expiration of the auth method would you like to be notified.
    forceSubClaims Boolean
    if true: enforce role-association must include sub claims
    gwBoundIps List<String>
    A CIDR whitelist with the GW IPs that the access is restricted to
    jwtTtl Number
    Jwt TTL
    name String
    Auth Method name
    productTypes List<String>
    Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
    revokedCertIds List<String>
    A list of revoked cert ids
    uniqueIdentifier String
    A unique identifier (ID) value should be configured, such as commonname or organizationalunit 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.
    Viewing docs for akeyless 2.0.1
    published on Monday, Apr 27, 2026 by akeyless-community
      Try Pulumi Cloud free. Your team will thank you.