akeyless.AuthMethodCert
Explore with Pulumi AI
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:
- Unique
Identifier 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 double - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- Audit
Logs List<string>Claims - Subclaims to include in audit logs
- Auth
Method stringCert Id - The ID of this resource.
- Bound
Common List<string>Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- Bound
Dns List<string>Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- Bound
Email List<string>Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- Bound
Extensions 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'.
- Bound
Ips List<string> - A comma-separated CIDR block list to allow client access
- Bound
Organizational List<string>Units - A list of Organizational Units names. At least one must exist in the OU field.
- Bound
Uri List<string>Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- Certificate
Data string - The certificate data in base64, if no file was provided.
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Force
Sub boolClaims - enforce role-association must include sub claims
- Gw
Bound List<string>Ips - A comma-separated CIDR block list as a trusted Gateway entity
- Jwt
Ttl double - Creds expiration time in minutes
- Name string
- Auth Method name
- Revoked
Cert List<string>Ids - A list of revoked cert ids
- Unique
Identifier 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 float64 - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- Audit
Logs []stringClaims - Subclaims to include in audit logs
- Auth
Method stringCert Id - The ID of this resource.
- Bound
Common []stringNames - A list of names. At least one must exist in the Common Name. Supports globbing.
- Bound
Dns []stringSans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- Bound
Email []stringSans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- Bound
Extensions []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'.
- Bound
Ips []string - A comma-separated CIDR block list to allow client access
- Bound
Organizational []stringUnits - A list of Organizational Units names. At least one must exist in the OU field.
- Bound
Uri []stringSans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- Certificate
Data string - The certificate data in base64, if no file was provided.
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Force
Sub boolClaims - enforce role-association must include sub claims
- Gw
Bound []stringIps - A comma-separated CIDR block list as a trusted Gateway entity
- Jwt
Ttl float64 - Creds expiration time in minutes
- Name string
- Auth Method name
- Revoked
Cert []stringIds - A list of revoked cert ids
- unique
Identifier 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 Double - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- audit
Logs List<String>Claims - Subclaims to include in audit logs
- auth
Method StringCert Id - The ID of this resource.
- bound
Common List<String>Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound
Dns List<String>Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound
Email List<String>Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- bound
Extensions 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'.
- bound
Ips List<String> - A comma-separated CIDR block list to allow client access
- bound
Organizational List<String>Units - A list of Organizational Units names. At least one must exist in the OU field.
- bound
Uri List<String>Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- certificate
Data String - The certificate data in base64, if no file was provided.
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- force
Sub BooleanClaims - enforce role-association must include sub claims
- gw
Bound List<String>Ips - A comma-separated CIDR block list as a trusted Gateway entity
- jwt
Ttl Double - Creds expiration time in minutes
- name String
- Auth Method name
- revoked
Cert List<String>Ids - A list of revoked cert ids
- unique
Identifier 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 number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- audit
Logs string[]Claims - Subclaims to include in audit logs
- auth
Method stringCert Id - The ID of this resource.
- bound
Common string[]Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound
Dns string[]Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound
Email string[]Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- bound
Extensions 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'.
- bound
Ips string[] - A comma-separated CIDR block list to allow client access
- bound
Organizational string[]Units - A list of Organizational Units names. At least one must exist in the OU field.
- bound
Uri string[]Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- certificate
Data string - The certificate data in base64, if no file was provided.
- delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- force
Sub booleanClaims - enforce role-association must include sub claims
- gw
Bound string[]Ips - A comma-separated CIDR block list as a trusted Gateway entity
- jwt
Ttl number - Creds expiration time in minutes
- name string
- Auth Method name
- revoked
Cert string[]Ids - 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_ Sequence[str]claims - Subclaims to include in audit logs
- auth_
method_ strcert_ id - The ID of this resource.
- bound_
common_ Sequence[str]names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound_
dns_ Sequence[str]sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound_
email_ Sequence[str]sans - 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_ Sequence[str]units - A list of Organizational Units names. At least one must exist in the OU field.
- bound_
uri_ Sequence[str]sans - 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_ boolclaims - enforce role-association must include sub claims
- gw_
bound_ Sequence[str]ips - 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_ Sequence[str]ids - A list of revoked cert ids
- unique
Identifier 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 Number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- audit
Logs List<String>Claims - Subclaims to include in audit logs
- auth
Method StringCert Id - The ID of this resource.
- bound
Common List<String>Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound
Dns List<String>Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound
Email List<String>Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- bound
Extensions 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'.
- bound
Ips List<String> - A comma-separated CIDR block list to allow client access
- bound
Organizational List<String>Units - A list of Organizational Units names. At least one must exist in the OU field.
- bound
Uri List<String>Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- certificate
Data String - The certificate data in base64, if no file was provided.
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- force
Sub BooleanClaims - enforce role-association must include sub claims
- gw
Bound List<String>Ips - A comma-separated CIDR block list as a trusted Gateway entity
- jwt
Ttl Number - Creds expiration time in minutes
- name String
- Auth Method name
- revoked
Cert List<String>Ids - 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:
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.
- Access
Expires double - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- Access
Id string - Auth Method access ID
- Audit
Logs List<string>Claims - Subclaims to include in audit logs
- Auth
Method stringCert Id - The ID of this resource.
- Bound
Common List<string>Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- Bound
Dns List<string>Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- Bound
Email List<string>Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- Bound
Extensions 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'.
- Bound
Ips List<string> - A comma-separated CIDR block list to allow client access
- Bound
Organizational List<string>Units - A list of Organizational Units names. At least one must exist in the OU field.
- Bound
Uri List<string>Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- Certificate
Data string - The certificate data in base64, if no file was provided.
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Force
Sub boolClaims - enforce role-association must include sub claims
- Gw
Bound List<string>Ips - A comma-separated CIDR block list as a trusted Gateway entity
- Jwt
Ttl double - Creds expiration time in minutes
- Name string
- Auth Method name
- Revoked
Cert List<string>Ids - A list of revoked cert ids
- Unique
Identifier 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 float64 - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- Access
Id string - Auth Method access ID
- Audit
Logs []stringClaims - Subclaims to include in audit logs
- Auth
Method stringCert Id - The ID of this resource.
- Bound
Common []stringNames - A list of names. At least one must exist in the Common Name. Supports globbing.
- Bound
Dns []stringSans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- Bound
Email []stringSans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- Bound
Extensions []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'.
- Bound
Ips []string - A comma-separated CIDR block list to allow client access
- Bound
Organizational []stringUnits - A list of Organizational Units names. At least one must exist in the OU field.
- Bound
Uri []stringSans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- Certificate
Data string - The certificate data in base64, if no file was provided.
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Force
Sub boolClaims - enforce role-association must include sub claims
- Gw
Bound []stringIps - A comma-separated CIDR block list as a trusted Gateway entity
- Jwt
Ttl float64 - Creds expiration time in minutes
- Name string
- Auth Method name
- Revoked
Cert []stringIds - A list of revoked cert ids
- Unique
Identifier 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 Double - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- access
Id String - Auth Method access ID
- audit
Logs List<String>Claims - Subclaims to include in audit logs
- auth
Method StringCert Id - The ID of this resource.
- bound
Common List<String>Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound
Dns List<String>Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound
Email List<String>Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- bound
Extensions 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'.
- bound
Ips List<String> - A comma-separated CIDR block list to allow client access
- bound
Organizational List<String>Units - A list of Organizational Units names. At least one must exist in the OU field.
- bound
Uri List<String>Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- certificate
Data String - The certificate data in base64, if no file was provided.
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- force
Sub BooleanClaims - enforce role-association must include sub claims
- gw
Bound List<String>Ips - A comma-separated CIDR block list as a trusted Gateway entity
- jwt
Ttl Double - Creds expiration time in minutes
- name String
- Auth Method name
- revoked
Cert List<String>Ids - A list of revoked cert ids
- unique
Identifier 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 number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- access
Id string - Auth Method access ID
- audit
Logs string[]Claims - Subclaims to include in audit logs
- auth
Method stringCert Id - The ID of this resource.
- bound
Common string[]Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound
Dns string[]Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound
Email string[]Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- bound
Extensions 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'.
- bound
Ips string[] - A comma-separated CIDR block list to allow client access
- bound
Organizational string[]Units - A list of Organizational Units names. At least one must exist in the OU field.
- bound
Uri string[]Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- certificate
Data string - The certificate data in base64, if no file was provided.
- delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- force
Sub booleanClaims - enforce role-association must include sub claims
- gw
Bound string[]Ips - A comma-separated CIDR block list as a trusted Gateway entity
- jwt
Ttl number - Creds expiration time in minutes
- name string
- Auth Method name
- revoked
Cert string[]Ids - A list of revoked cert ids
- unique
Identifier 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_ Sequence[str]claims - Subclaims to include in audit logs
- auth_
method_ strcert_ id - The ID of this resource.
- bound_
common_ Sequence[str]names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound_
dns_ Sequence[str]sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound_
email_ Sequence[str]sans - 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_ Sequence[str]units - A list of Organizational Units names. At least one must exist in the OU field.
- bound_
uri_ Sequence[str]sans - 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_ boolclaims - enforce role-association must include sub claims
- gw_
bound_ Sequence[str]ips - 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_ Sequence[str]ids - 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 Number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- access
Id String - Auth Method access ID
- audit
Logs List<String>Claims - Subclaims to include in audit logs
- auth
Method StringCert Id - The ID of this resource.
- bound
Common List<String>Names - A list of names. At least one must exist in the Common Name. Supports globbing.
- bound
Dns List<String>Sans - A list of DNS names. At least one must exist in the SANs. Supports globbing.
- bound
Email List<String>Sans - A list of Email Addresses. At least one must exist in the SANs. Supports globbing.
- bound
Extensions 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'.
- bound
Ips List<String> - A comma-separated CIDR block list to allow client access
- bound
Organizational List<String>Units - A list of Organizational Units names. At least one must exist in the OU field.
- bound
Uri List<String>Sans - A list of URIs. At least one must exist in the SANs. Supports globbing.
- certificate
Data String - The certificate data in base64, if no file was provided.
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- force
Sub BooleanClaims - enforce role-association must include sub claims
- gw
Bound List<String>Ips - A comma-separated CIDR block list as a trusted Gateway entity
- jwt
Ttl Number - Creds expiration time in minutes
- name String
- Auth Method name
- revoked
Cert List<String>Ids - A list of revoked cert ids
- unique
Identifier 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.