published on Monday, Apr 27, 2026 by akeyless-community
published on Monday, Apr 27, 2026 by akeyless-community
Akeyless Universal Identity Auth Method Resource
Create AuthMethodUniversalIdentity Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthMethodUniversalIdentity(name: string, args?: AuthMethodUniversalIdentityArgs, opts?: CustomResourceOptions);@overload
def AuthMethodUniversalIdentity(resource_name: str,
args: Optional[AuthMethodUniversalIdentityArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AuthMethodUniversalIdentity(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_expires: Optional[float] = None,
allowed_client_types: Optional[Sequence[str]] = None,
audit_logs_claims: Optional[Sequence[str]] = None,
auth_method_universal_identity_id: Optional[str] = None,
bound_ips: Optional[Sequence[str]] = None,
delete_protection: Optional[str] = None,
deny_inheritance: Optional[bool] = None,
deny_rotate: Optional[bool] = 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,
ttl: Optional[float] = None)func NewAuthMethodUniversalIdentity(ctx *Context, name string, args *AuthMethodUniversalIdentityArgs, opts ...ResourceOption) (*AuthMethodUniversalIdentity, error)public AuthMethodUniversalIdentity(string name, AuthMethodUniversalIdentityArgs? args = null, CustomResourceOptions? opts = null)
public AuthMethodUniversalIdentity(String name, AuthMethodUniversalIdentityArgs args)
public AuthMethodUniversalIdentity(String name, AuthMethodUniversalIdentityArgs args, CustomResourceOptions options)
type: akeyless:AuthMethodUniversalIdentity
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 AuthMethodUniversalIdentityArgs
- 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 AuthMethodUniversalIdentityArgs
- 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 AuthMethodUniversalIdentityArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthMethodUniversalIdentityArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthMethodUniversalIdentityArgs
- 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 authMethodUniversalIdentityResource = new Akeyless.AuthMethodUniversalIdentity("authMethodUniversalIdentityResource", new()
{
AccessExpires = 0,
AllowedClientTypes = new[]
{
"string",
},
AuditLogsClaims = new[]
{
"string",
},
AuthMethodUniversalIdentityId = "string",
BoundIps = new[]
{
"string",
},
DeleteProtection = "string",
DenyInheritance = false,
DenyRotate = false,
Description = "string",
ExpirationEventIns = new[]
{
"string",
},
ForceSubClaims = false,
GwBoundIps = new[]
{
"string",
},
JwtTtl = 0,
Name = "string",
ProductTypes = new[]
{
"string",
},
Ttl = 0,
});
example, err := akeyless.NewAuthMethodUniversalIdentity(ctx, "authMethodUniversalIdentityResource", &akeyless.AuthMethodUniversalIdentityArgs{
AccessExpires: pulumi.Float64(0),
AllowedClientTypes: pulumi.StringArray{
pulumi.String("string"),
},
AuditLogsClaims: pulumi.StringArray{
pulumi.String("string"),
},
AuthMethodUniversalIdentityId: pulumi.String("string"),
BoundIps: pulumi.StringArray{
pulumi.String("string"),
},
DeleteProtection: pulumi.String("string"),
DenyInheritance: pulumi.Bool(false),
DenyRotate: pulumi.Bool(false),
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"),
},
Ttl: pulumi.Float64(0),
})
var authMethodUniversalIdentityResource = new AuthMethodUniversalIdentity("authMethodUniversalIdentityResource", AuthMethodUniversalIdentityArgs.builder()
.accessExpires(0.0)
.allowedClientTypes("string")
.auditLogsClaims("string")
.authMethodUniversalIdentityId("string")
.boundIps("string")
.deleteProtection("string")
.denyInheritance(false)
.denyRotate(false)
.description("string")
.expirationEventIns("string")
.forceSubClaims(false)
.gwBoundIps("string")
.jwtTtl(0.0)
.name("string")
.productTypes("string")
.ttl(0.0)
.build());
auth_method_universal_identity_resource = akeyless.AuthMethodUniversalIdentity("authMethodUniversalIdentityResource",
access_expires=float(0),
allowed_client_types=["string"],
audit_logs_claims=["string"],
auth_method_universal_identity_id="string",
bound_ips=["string"],
delete_protection="string",
deny_inheritance=False,
deny_rotate=False,
description="string",
expiration_event_ins=["string"],
force_sub_claims=False,
gw_bound_ips=["string"],
jwt_ttl=float(0),
name="string",
product_types=["string"],
ttl=float(0))
const authMethodUniversalIdentityResource = new akeyless.AuthMethodUniversalIdentity("authMethodUniversalIdentityResource", {
accessExpires: 0,
allowedClientTypes: ["string"],
auditLogsClaims: ["string"],
authMethodUniversalIdentityId: "string",
boundIps: ["string"],
deleteProtection: "string",
denyInheritance: false,
denyRotate: false,
description: "string",
expirationEventIns: ["string"],
forceSubClaims: false,
gwBoundIps: ["string"],
jwtTtl: 0,
name: "string",
productTypes: ["string"],
ttl: 0,
});
type: akeyless:AuthMethodUniversalIdentity
properties:
accessExpires: 0
allowedClientTypes:
- string
auditLogsClaims:
- string
authMethodUniversalIdentityId: string
boundIps:
- string
deleteProtection: string
denyInheritance: false
denyRotate: false
description: string
expirationEventIns:
- string
forceSubClaims: false
gwBoundIps:
- string
jwtTtl: 0
name: string
productTypes:
- string
ttl: 0
AuthMethodUniversalIdentity 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 AuthMethodUniversalIdentity resource accepts the following input properties:
- Access
Expires double - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- Allowed
Client List<string>Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- Audit
Logs List<string>Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- Auth
Method stringUniversal Identity Id - The ID of this resource.
- Bound
Ips List<string> - A CIDR whitelist with the IPs that the access is restricted to
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Deny
Inheritance bool - Deny from root to create children
- Deny
Rotate bool - Deny from the token to rotate
- Description string
- Auth Method description
- Expiration
Event List<string>Ins - How many days before the expiration of the auth method would you like to be notified.
- Force
Sub boolClaims - if true: enforce role-association must include sub claims
- Gw
Bound List<string>Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- Jwt
Ttl double - Creds expiration time in minutes
- Name string
- Auth Method name
- Product
Types List<string> - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- Ttl double
- Token ttl (in minutes)
- Access
Expires float64 - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- Allowed
Client []stringTypes - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- Audit
Logs []stringClaims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- Auth
Method stringUniversal Identity Id - The ID of this resource.
- Bound
Ips []string - A CIDR whitelist with the IPs that the access is restricted to
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Deny
Inheritance bool - Deny from root to create children
- Deny
Rotate bool - Deny from the token to rotate
- Description string
- Auth Method description
- Expiration
Event []stringIns - How many days before the expiration of the auth method would you like to be notified.
- Force
Sub boolClaims - if true: enforce role-association must include sub claims
- Gw
Bound []stringIps - A CIDR whitelist with the GW IPs that the access is restricted to
- Jwt
Ttl float64 - Creds expiration time in minutes
- Name string
- Auth Method name
- Product
Types []string - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- Ttl float64
- Token ttl (in minutes)
- access
Expires Double - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- allowed
Client List<String>Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit
Logs List<String>Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth
Method StringUniversal Identity Id - The ID of this resource.
- bound
Ips List<String> - A CIDR whitelist with the IPs that the access is restricted to
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- deny
Inheritance Boolean - Deny from root to create children
- deny
Rotate Boolean - Deny from the token to rotate
- description String
- Auth Method description
- expiration
Event List<String>Ins - How many days before the expiration of the auth method would you like to be notified.
- force
Sub BooleanClaims - if true: enforce role-association must include sub claims
- gw
Bound List<String>Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt
Ttl Double - Creds expiration time in minutes
- name String
- Auth Method name
- product
Types List<String> - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl Double
- Token ttl (in minutes)
- access
Expires number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- allowed
Client string[]Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit
Logs string[]Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth
Method stringUniversal Identity Id - The ID of this resource.
- bound
Ips string[] - A CIDR whitelist with the IPs that the access is restricted to
- delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- deny
Inheritance boolean - Deny from root to create children
- deny
Rotate boolean - Deny from the token to rotate
- description string
- Auth Method description
- expiration
Event string[]Ins - How many days before the expiration of the auth method would you like to be notified.
- force
Sub booleanClaims - if true: enforce role-association must include sub claims
- gw
Bound string[]Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt
Ttl number - Creds expiration time in minutes
- name string
- Auth Method name
- product
Types string[] - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl number
- Token ttl (in minutes)
- access_
expires float - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- allowed_
client_ Sequence[str]types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit_
logs_ Sequence[str]claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth_
method_ struniversal_ identity_ id - The ID of this resource.
- bound_
ips Sequence[str] - A CIDR whitelist with the IPs that the access is restricted to
- delete_
protection str - Protection from accidental deletion of this auth method, [true/false]
- deny_
inheritance bool - Deny from root to create children
- deny_
rotate bool - Deny from the token to rotate
- description str
- Auth Method description
- expiration_
event_ Sequence[str]ins - How many days before the expiration of the auth method would you like to be notified.
- force_
sub_ boolclaims - if true: enforce role-association must include sub claims
- gw_
bound_ Sequence[str]ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt_
ttl float - Creds expiration time in minutes
- name str
- Auth Method name
- product_
types Sequence[str] - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl float
- Token ttl (in minutes)
- access
Expires Number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- allowed
Client List<String>Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit
Logs List<String>Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth
Method StringUniversal Identity Id - The ID of this resource.
- bound
Ips List<String> - A CIDR whitelist with the IPs that the access is restricted to
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- deny
Inheritance Boolean - Deny from root to create children
- deny
Rotate Boolean - Deny from the token to rotate
- description String
- Auth Method description
- expiration
Event List<String>Ins - How many days before the expiration of the auth method would you like to be notified.
- force
Sub BooleanClaims - if true: enforce role-association must include sub claims
- gw
Bound List<String>Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt
Ttl Number - Creds expiration time in minutes
- name String
- Auth Method name
- product
Types List<String> - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl Number
- Token ttl (in minutes)
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthMethodUniversalIdentity resource produces the following output properties:
Look up Existing AuthMethodUniversalIdentity Resource
Get an existing AuthMethodUniversalIdentity 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?: AuthMethodUniversalIdentityState, opts?: CustomResourceOptions): AuthMethodUniversalIdentity@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,
audit_logs_claims: Optional[Sequence[str]] = None,
auth_method_universal_identity_id: Optional[str] = None,
bound_ips: Optional[Sequence[str]] = None,
delete_protection: Optional[str] = None,
deny_inheritance: Optional[bool] = None,
deny_rotate: Optional[bool] = 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,
ttl: Optional[float] = None) -> AuthMethodUniversalIdentityfunc GetAuthMethodUniversalIdentity(ctx *Context, name string, id IDInput, state *AuthMethodUniversalIdentityState, opts ...ResourceOption) (*AuthMethodUniversalIdentity, error)public static AuthMethodUniversalIdentity Get(string name, Input<string> id, AuthMethodUniversalIdentityState? state, CustomResourceOptions? opts = null)public static AuthMethodUniversalIdentity get(String name, Output<String> id, AuthMethodUniversalIdentityState state, CustomResourceOptions options)resources: _: type: akeyless:AuthMethodUniversalIdentity 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
- Allowed
Client List<string>Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- Audit
Logs List<string>Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- Auth
Method stringUniversal Identity Id - The ID of this resource.
- Bound
Ips List<string> - A CIDR whitelist with the IPs that the access is restricted to
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Deny
Inheritance bool - Deny from root to create children
- Deny
Rotate bool - Deny from the token to rotate
- Description string
- Auth Method description
- Expiration
Event List<string>Ins - How many days before the expiration of the auth method would you like to be notified.
- Force
Sub boolClaims - if true: enforce role-association must include sub claims
- Gw
Bound List<string>Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- Jwt
Ttl double - Creds expiration time in minutes
- Name string
- Auth Method name
- Product
Types List<string> - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- Ttl double
- Token ttl (in minutes)
- Access
Expires float64 - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- Access
Id string - Auth Method access ID
- Allowed
Client []stringTypes - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- Audit
Logs []stringClaims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- Auth
Method stringUniversal Identity Id - The ID of this resource.
- Bound
Ips []string - A CIDR whitelist with the IPs that the access is restricted to
- Delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- Deny
Inheritance bool - Deny from root to create children
- Deny
Rotate bool - Deny from the token to rotate
- Description string
- Auth Method description
- Expiration
Event []stringIns - How many days before the expiration of the auth method would you like to be notified.
- Force
Sub boolClaims - if true: enforce role-association must include sub claims
- Gw
Bound []stringIps - A CIDR whitelist with the GW IPs that the access is restricted to
- Jwt
Ttl float64 - Creds expiration time in minutes
- Name string
- Auth Method name
- Product
Types []string - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- Ttl float64
- Token ttl (in minutes)
- access
Expires Double - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- access
Id String - Auth Method access ID
- allowed
Client List<String>Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit
Logs List<String>Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth
Method StringUniversal Identity Id - The ID of this resource.
- bound
Ips List<String> - A CIDR whitelist with the IPs that the access is restricted to
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- deny
Inheritance Boolean - Deny from root to create children
- deny
Rotate Boolean - Deny from the token to rotate
- description String
- Auth Method description
- expiration
Event List<String>Ins - How many days before the expiration of the auth method would you like to be notified.
- force
Sub BooleanClaims - if true: enforce role-association must include sub claims
- gw
Bound List<String>Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt
Ttl Double - Creds expiration time in minutes
- name String
- Auth Method name
- product
Types List<String> - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl Double
- Token ttl (in minutes)
- access
Expires number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- access
Id string - Auth Method access ID
- allowed
Client string[]Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit
Logs string[]Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth
Method stringUniversal Identity Id - The ID of this resource.
- bound
Ips string[] - A CIDR whitelist with the IPs that the access is restricted to
- delete
Protection string - Protection from accidental deletion of this auth method, [true/false]
- deny
Inheritance boolean - Deny from root to create children
- deny
Rotate boolean - Deny from the token to rotate
- description string
- Auth Method description
- expiration
Event string[]Ins - How many days before the expiration of the auth method would you like to be notified.
- force
Sub booleanClaims - if true: enforce role-association must include sub claims
- gw
Bound string[]Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt
Ttl number - Creds expiration time in minutes
- name string
- Auth Method name
- product
Types string[] - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl number
- Token ttl (in minutes)
- 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_ Sequence[str]types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit_
logs_ Sequence[str]claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth_
method_ struniversal_ identity_ id - The ID of this resource.
- bound_
ips Sequence[str] - A CIDR whitelist with the IPs that the access is restricted to
- delete_
protection str - Protection from accidental deletion of this auth method, [true/false]
- deny_
inheritance bool - Deny from root to create children
- deny_
rotate bool - Deny from the token to rotate
- description str
- Auth Method description
- expiration_
event_ Sequence[str]ins - How many days before the expiration of the auth method would you like to be notified.
- force_
sub_ boolclaims - if true: enforce role-association must include sub claims
- gw_
bound_ Sequence[str]ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt_
ttl float - Creds expiration time in minutes
- name str
- Auth Method name
- product_
types Sequence[str] - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl float
- Token ttl (in minutes)
- access
Expires Number - Access expiration date in Unix timestamp (select 0 for access without expiry date)
- access
Id String - Auth Method access ID
- allowed
Client List<String>Types - limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]
- audit
Logs List<String>Claims - Subclaims to include in audit logs, e.g "--audit-logs-claims email --audit-logs-claims username"
- auth
Method StringUniversal Identity Id - The ID of this resource.
- bound
Ips List<String> - A CIDR whitelist with the IPs that the access is restricted to
- delete
Protection String - Protection from accidental deletion of this auth method, [true/false]
- deny
Inheritance Boolean - Deny from root to create children
- deny
Rotate Boolean - Deny from the token to rotate
- description String
- Auth Method description
- expiration
Event List<String>Ins - How many days before the expiration of the auth method would you like to be notified.
- force
Sub BooleanClaims - if true: enforce role-association must include sub claims
- gw
Bound List<String>Ips - A CIDR whitelist with the GW IPs that the access is restricted to
- jwt
Ttl Number - Creds expiration time in minutes
- name String
- Auth Method name
- product
Types List<String> - Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]
- ttl Number
- Token ttl (in minutes)
Package Details
- Repository
- akeyless akeyless-community/terraform-provider-akeyless
- License
- Notes
- This Pulumi package is based on the
akeylessTerraform Provider.
published on Monday, Apr 27, 2026 by akeyless-community
