published on Monday, Apr 27, 2026 by akeyless-community
published on Monday, Apr 27, 2026 by akeyless-community
Azure AD dynamic secret resource
Create DynamicSecretAzure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DynamicSecretAzure(name: string, args?: DynamicSecretAzureArgs, opts?: CustomResourceOptions);@overload
def DynamicSecretAzure(resource_name: str,
args: Optional[DynamicSecretAzureArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def DynamicSecretAzure(resource_name: str,
opts: Optional[ResourceOptions] = None,
app_obj_id: Optional[str] = None,
azure_administrative_unit: Optional[str] = None,
azure_client_id: Optional[str] = None,
azure_client_secret: Optional[str] = None,
azure_tenant_id: Optional[str] = None,
custom_username_template: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_azure_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
fixed_user_claim_keyname: Optional[str] = None,
fixed_user_only: Optional[bool] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
password_length: Optional[str] = None,
secure_access_enable: Optional[str] = None,
secure_access_url: Optional[str] = None,
secure_access_web: Optional[bool] = None,
secure_access_web_browsing: Optional[bool] = None,
secure_access_web_proxy: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_group_obj_id: Optional[str] = None,
user_portal_access: Optional[bool] = None,
user_principal_name: Optional[str] = None,
user_programmatic_access: Optional[bool] = None,
user_role_template_id: Optional[str] = None,
user_ttl: Optional[str] = None)func NewDynamicSecretAzure(ctx *Context, name string, args *DynamicSecretAzureArgs, opts ...ResourceOption) (*DynamicSecretAzure, error)public DynamicSecretAzure(string name, DynamicSecretAzureArgs? args = null, CustomResourceOptions? opts = null)
public DynamicSecretAzure(String name, DynamicSecretAzureArgs args)
public DynamicSecretAzure(String name, DynamicSecretAzureArgs args, CustomResourceOptions options)
type: akeyless:DynamicSecretAzure
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 DynamicSecretAzureArgs
- 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 DynamicSecretAzureArgs
- 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 DynamicSecretAzureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DynamicSecretAzureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DynamicSecretAzureArgs
- 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 dynamicSecretAzureResource = new Akeyless.DynamicSecretAzure("dynamicSecretAzureResource", new()
{
AppObjId = "string",
AzureAdministrativeUnit = "string",
AzureClientId = "string",
AzureClientSecret = "string",
AzureTenantId = "string",
CustomUsernameTemplate = "string",
DeleteProtection = "string",
Description = "string",
DynamicSecretAzureId = "string",
EncryptionKeyName = "string",
FixedUserClaimKeyname = "string",
FixedUserOnly = false,
ItemCustomFields =
{
{ "string", "string" },
},
Name = "string",
PasswordLength = "string",
SecureAccessEnable = "string",
SecureAccessUrl = "string",
SecureAccessWeb = false,
SecureAccessWebBrowsing = false,
SecureAccessWebProxy = false,
Tags = new[]
{
"string",
},
TargetName = "string",
UserGroupObjId = "string",
UserPortalAccess = false,
UserPrincipalName = "string",
UserProgrammaticAccess = false,
UserRoleTemplateId = "string",
UserTtl = "string",
});
example, err := akeyless.NewDynamicSecretAzure(ctx, "dynamicSecretAzureResource", &akeyless.DynamicSecretAzureArgs{
AppObjId: pulumi.String("string"),
AzureAdministrativeUnit: pulumi.String("string"),
AzureClientId: pulumi.String("string"),
AzureClientSecret: pulumi.String("string"),
AzureTenantId: pulumi.String("string"),
CustomUsernameTemplate: pulumi.String("string"),
DeleteProtection: pulumi.String("string"),
Description: pulumi.String("string"),
DynamicSecretAzureId: pulumi.String("string"),
EncryptionKeyName: pulumi.String("string"),
FixedUserClaimKeyname: pulumi.String("string"),
FixedUserOnly: pulumi.Bool(false),
ItemCustomFields: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
PasswordLength: pulumi.String("string"),
SecureAccessEnable: pulumi.String("string"),
SecureAccessUrl: pulumi.String("string"),
SecureAccessWeb: pulumi.Bool(false),
SecureAccessWebBrowsing: pulumi.Bool(false),
SecureAccessWebProxy: pulumi.Bool(false),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TargetName: pulumi.String("string"),
UserGroupObjId: pulumi.String("string"),
UserPortalAccess: pulumi.Bool(false),
UserPrincipalName: pulumi.String("string"),
UserProgrammaticAccess: pulumi.Bool(false),
UserRoleTemplateId: pulumi.String("string"),
UserTtl: pulumi.String("string"),
})
var dynamicSecretAzureResource = new DynamicSecretAzure("dynamicSecretAzureResource", DynamicSecretAzureArgs.builder()
.appObjId("string")
.azureAdministrativeUnit("string")
.azureClientId("string")
.azureClientSecret("string")
.azureTenantId("string")
.customUsernameTemplate("string")
.deleteProtection("string")
.description("string")
.dynamicSecretAzureId("string")
.encryptionKeyName("string")
.fixedUserClaimKeyname("string")
.fixedUserOnly(false)
.itemCustomFields(Map.of("string", "string"))
.name("string")
.passwordLength("string")
.secureAccessEnable("string")
.secureAccessUrl("string")
.secureAccessWeb(false)
.secureAccessWebBrowsing(false)
.secureAccessWebProxy(false)
.tags("string")
.targetName("string")
.userGroupObjId("string")
.userPortalAccess(false)
.userPrincipalName("string")
.userProgrammaticAccess(false)
.userRoleTemplateId("string")
.userTtl("string")
.build());
dynamic_secret_azure_resource = akeyless.DynamicSecretAzure("dynamicSecretAzureResource",
app_obj_id="string",
azure_administrative_unit="string",
azure_client_id="string",
azure_client_secret="string",
azure_tenant_id="string",
custom_username_template="string",
delete_protection="string",
description="string",
dynamic_secret_azure_id="string",
encryption_key_name="string",
fixed_user_claim_keyname="string",
fixed_user_only=False,
item_custom_fields={
"string": "string",
},
name="string",
password_length="string",
secure_access_enable="string",
secure_access_url="string",
secure_access_web=False,
secure_access_web_browsing=False,
secure_access_web_proxy=False,
tags=["string"],
target_name="string",
user_group_obj_id="string",
user_portal_access=False,
user_principal_name="string",
user_programmatic_access=False,
user_role_template_id="string",
user_ttl="string")
const dynamicSecretAzureResource = new akeyless.DynamicSecretAzure("dynamicSecretAzureResource", {
appObjId: "string",
azureAdministrativeUnit: "string",
azureClientId: "string",
azureClientSecret: "string",
azureTenantId: "string",
customUsernameTemplate: "string",
deleteProtection: "string",
description: "string",
dynamicSecretAzureId: "string",
encryptionKeyName: "string",
fixedUserClaimKeyname: "string",
fixedUserOnly: false,
itemCustomFields: {
string: "string",
},
name: "string",
passwordLength: "string",
secureAccessEnable: "string",
secureAccessUrl: "string",
secureAccessWeb: false,
secureAccessWebBrowsing: false,
secureAccessWebProxy: false,
tags: ["string"],
targetName: "string",
userGroupObjId: "string",
userPortalAccess: false,
userPrincipalName: "string",
userProgrammaticAccess: false,
userRoleTemplateId: "string",
userTtl: "string",
});
type: akeyless:DynamicSecretAzure
properties:
appObjId: string
azureAdministrativeUnit: string
azureClientId: string
azureClientSecret: string
azureTenantId: string
customUsernameTemplate: string
deleteProtection: string
description: string
dynamicSecretAzureId: string
encryptionKeyName: string
fixedUserClaimKeyname: string
fixedUserOnly: false
itemCustomFields:
string: string
name: string
passwordLength: string
secureAccessEnable: string
secureAccessUrl: string
secureAccessWeb: false
secureAccessWebBrowsing: false
secureAccessWebProxy: false
tags:
- string
targetName: string
userGroupObjId: string
userPortalAccess: false
userPrincipalName: string
userProgrammaticAccess: false
userRoleTemplateId: string
userTtl: string
DynamicSecretAzure 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 DynamicSecretAzure resource accepts the following input properties:
- App
Obj stringId - Azure App Object Id
- Azure
Administrative stringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- Azure
Client stringId - Azure Client ID
- Azure
Client stringSecret - Azure Client Secret
- Azure
Tenant stringId - Azure Tenant ID
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringAzure Id - The ID of this resource.
- Encryption
Key stringName - Dynamic secret encryption key
- Fixed
User stringClaim Keyname - FixedUserClaimKeyname
- Fixed
User boolOnly - Fixed user
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringEnable - Enable/Disable secure remote access [true/false]
- Secure
Access stringUrl - Secure
Access boolWeb - Enable Web Secure Remote Access
- Secure
Access boolWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- Secure
Access boolWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Group stringObj Id - User Group Object Id
- User
Portal boolAccess - Azure User portal access
- User
Principal stringName - User Principal Name
- User
Programmatic boolAccess - Azure User programmatic access
- User
Role stringTemplate Id - User Role Template Id
- User
Ttl string - User TTL
- App
Obj stringId - Azure App Object Id
- Azure
Administrative stringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- Azure
Client stringId - Azure Client ID
- Azure
Client stringSecret - Azure Client Secret
- Azure
Tenant stringId - Azure Tenant ID
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringAzure Id - The ID of this resource.
- Encryption
Key stringName - Dynamic secret encryption key
- Fixed
User stringClaim Keyname - FixedUserClaimKeyname
- Fixed
User boolOnly - Fixed user
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringEnable - Enable/Disable secure remote access [true/false]
- Secure
Access stringUrl - Secure
Access boolWeb - Enable Web Secure Remote Access
- Secure
Access boolWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- Secure
Access boolWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Group stringObj Id - User Group Object Id
- User
Portal boolAccess - Azure User portal access
- User
Principal stringName - User Principal Name
- User
Programmatic boolAccess - Azure User programmatic access
- User
Role stringTemplate Id - User Role Template Id
- User
Ttl string - User TTL
- app
Obj StringId - Azure App Object Id
- azure
Administrative StringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure
Client StringId - Azure Client ID
- azure
Client StringSecret - Azure Client Secret
- azure
Tenant StringId - Azure Tenant ID
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringAzure Id - The ID of this resource.
- encryption
Key StringName - Dynamic secret encryption key
- fixed
User StringClaim Keyname - FixedUserClaimKeyname
- fixed
User BooleanOnly - Fixed user
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringEnable - Enable/Disable secure remote access [true/false]
- secure
Access StringUrl - secure
Access BooleanWeb - Enable Web Secure Remote Access
- secure
Access BooleanWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure
Access BooleanWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Group StringObj Id - User Group Object Id
- user
Portal BooleanAccess - Azure User portal access
- user
Principal StringName - User Principal Name
- user
Programmatic BooleanAccess - Azure User programmatic access
- user
Role StringTemplate Id - User Role Template Id
- user
Ttl String - User TTL
- app
Obj stringId - Azure App Object Id
- azure
Administrative stringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure
Client stringId - Azure Client ID
- azure
Client stringSecret - Azure Client Secret
- azure
Tenant stringId - Azure Tenant ID
- custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic
Secret stringAzure Id - The ID of this resource.
- encryption
Key stringName - Dynamic secret encryption key
- fixed
User stringClaim Keyname - FixedUserClaimKeyname
- fixed
User booleanOnly - Fixed user
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- name string
- Dynamic secret name
- password
Length string - The length of the password to be generated
- secure
Access stringEnable - Enable/Disable secure remote access [true/false]
- secure
Access stringUrl - secure
Access booleanWeb - Enable Web Secure Remote Access
- secure
Access booleanWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure
Access booleanWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Group stringObj Id - User Group Object Id
- user
Portal booleanAccess - Azure User portal access
- user
Principal stringName - User Principal Name
- user
Programmatic booleanAccess - Azure User programmatic access
- user
Role stringTemplate Id - User Role Template Id
- user
Ttl string - User TTL
- app_
obj_ strid - Azure App Object Id
- azure_
administrative_ strunit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure_
client_ strid - Azure Client ID
- azure_
client_ strsecret - Azure Client Secret
- azure_
tenant_ strid - Azure Tenant ID
- custom_
username_ strtemplate - Customize how temporary usernames are generated using go template
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- dynamic_
secret_ strazure_ id - The ID of this resource.
- encryption_
key_ strname - Dynamic secret encryption key
- fixed_
user_ strclaim_ keyname - FixedUserClaimKeyname
- fixed_
user_ boolonly - Fixed user
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- name str
- Dynamic secret name
- password_
length str - The length of the password to be generated
- secure_
access_ strenable - Enable/Disable secure remote access [true/false]
- secure_
access_ strurl - secure_
access_ boolweb - Enable Web Secure Remote Access
- secure_
access_ boolweb_ browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure_
access_ boolweb_ proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
group_ strobj_ id - User Group Object Id
- user_
portal_ boolaccess - Azure User portal access
- user_
principal_ strname - User Principal Name
- user_
programmatic_ boolaccess - Azure User programmatic access
- user_
role_ strtemplate_ id - User Role Template Id
- user_
ttl str - User TTL
- app
Obj StringId - Azure App Object Id
- azure
Administrative StringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure
Client StringId - Azure Client ID
- azure
Client StringSecret - Azure Client Secret
- azure
Tenant StringId - Azure Tenant ID
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringAzure Id - The ID of this resource.
- encryption
Key StringName - Dynamic secret encryption key
- fixed
User StringClaim Keyname - FixedUserClaimKeyname
- fixed
User BooleanOnly - Fixed user
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringEnable - Enable/Disable secure remote access [true/false]
- secure
Access StringUrl - secure
Access BooleanWeb - Enable Web Secure Remote Access
- secure
Access BooleanWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure
Access BooleanWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Group StringObj Id - User Group Object Id
- user
Portal BooleanAccess - Azure User portal access
- user
Principal StringName - User Principal Name
- user
Programmatic BooleanAccess - Azure User programmatic access
- user
Role StringTemplate Id - User Role Template Id
- user
Ttl String - User TTL
Outputs
All input properties are implicitly available as output properties. Additionally, the DynamicSecretAzure resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing DynamicSecretAzure Resource
Get an existing DynamicSecretAzure 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?: DynamicSecretAzureState, opts?: CustomResourceOptions): DynamicSecretAzure@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_obj_id: Optional[str] = None,
azure_administrative_unit: Optional[str] = None,
azure_client_id: Optional[str] = None,
azure_client_secret: Optional[str] = None,
azure_tenant_id: Optional[str] = None,
custom_username_template: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_azure_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
fixed_user_claim_keyname: Optional[str] = None,
fixed_user_only: Optional[bool] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
password_length: Optional[str] = None,
secure_access_enable: Optional[str] = None,
secure_access_url: Optional[str] = None,
secure_access_web: Optional[bool] = None,
secure_access_web_browsing: Optional[bool] = None,
secure_access_web_proxy: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_group_obj_id: Optional[str] = None,
user_portal_access: Optional[bool] = None,
user_principal_name: Optional[str] = None,
user_programmatic_access: Optional[bool] = None,
user_role_template_id: Optional[str] = None,
user_ttl: Optional[str] = None) -> DynamicSecretAzurefunc GetDynamicSecretAzure(ctx *Context, name string, id IDInput, state *DynamicSecretAzureState, opts ...ResourceOption) (*DynamicSecretAzure, error)public static DynamicSecretAzure Get(string name, Input<string> id, DynamicSecretAzureState? state, CustomResourceOptions? opts = null)public static DynamicSecretAzure get(String name, Output<String> id, DynamicSecretAzureState state, CustomResourceOptions options)resources: _: type: akeyless:DynamicSecretAzure 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.
- App
Obj stringId - Azure App Object Id
- Azure
Administrative stringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- Azure
Client stringId - Azure Client ID
- Azure
Client stringSecret - Azure Client Secret
- Azure
Tenant stringId - Azure Tenant ID
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringAzure Id - The ID of this resource.
- Encryption
Key stringName - Dynamic secret encryption key
- Fixed
User stringClaim Keyname - FixedUserClaimKeyname
- Fixed
User boolOnly - Fixed user
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringEnable - Enable/Disable secure remote access [true/false]
- Secure
Access stringUrl - Secure
Access boolWeb - Enable Web Secure Remote Access
- Secure
Access boolWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- Secure
Access boolWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Group stringObj Id - User Group Object Id
- User
Portal boolAccess - Azure User portal access
- User
Principal stringName - User Principal Name
- User
Programmatic boolAccess - Azure User programmatic access
- User
Role stringTemplate Id - User Role Template Id
- User
Ttl string - User TTL
- App
Obj stringId - Azure App Object Id
- Azure
Administrative stringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- Azure
Client stringId - Azure Client ID
- Azure
Client stringSecret - Azure Client Secret
- Azure
Tenant stringId - Azure Tenant ID
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringAzure Id - The ID of this resource.
- Encryption
Key stringName - Dynamic secret encryption key
- Fixed
User stringClaim Keyname - FixedUserClaimKeyname
- Fixed
User boolOnly - Fixed user
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringEnable - Enable/Disable secure remote access [true/false]
- Secure
Access stringUrl - Secure
Access boolWeb - Enable Web Secure Remote Access
- Secure
Access boolWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- Secure
Access boolWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Group stringObj Id - User Group Object Id
- User
Portal boolAccess - Azure User portal access
- User
Principal stringName - User Principal Name
- User
Programmatic boolAccess - Azure User programmatic access
- User
Role stringTemplate Id - User Role Template Id
- User
Ttl string - User TTL
- app
Obj StringId - Azure App Object Id
- azure
Administrative StringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure
Client StringId - Azure Client ID
- azure
Client StringSecret - Azure Client Secret
- azure
Tenant StringId - Azure Tenant ID
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringAzure Id - The ID of this resource.
- encryption
Key StringName - Dynamic secret encryption key
- fixed
User StringClaim Keyname - FixedUserClaimKeyname
- fixed
User BooleanOnly - Fixed user
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringEnable - Enable/Disable secure remote access [true/false]
- secure
Access StringUrl - secure
Access BooleanWeb - Enable Web Secure Remote Access
- secure
Access BooleanWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure
Access BooleanWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Group StringObj Id - User Group Object Id
- user
Portal BooleanAccess - Azure User portal access
- user
Principal StringName - User Principal Name
- user
Programmatic BooleanAccess - Azure User programmatic access
- user
Role StringTemplate Id - User Role Template Id
- user
Ttl String - User TTL
- app
Obj stringId - Azure App Object Id
- azure
Administrative stringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure
Client stringId - Azure Client ID
- azure
Client stringSecret - Azure Client Secret
- azure
Tenant stringId - Azure Tenant ID
- custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic
Secret stringAzure Id - The ID of this resource.
- encryption
Key stringName - Dynamic secret encryption key
- fixed
User stringClaim Keyname - FixedUserClaimKeyname
- fixed
User booleanOnly - Fixed user
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- name string
- Dynamic secret name
- password
Length string - The length of the password to be generated
- secure
Access stringEnable - Enable/Disable secure remote access [true/false]
- secure
Access stringUrl - secure
Access booleanWeb - Enable Web Secure Remote Access
- secure
Access booleanWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure
Access booleanWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Group stringObj Id - User Group Object Id
- user
Portal booleanAccess - Azure User portal access
- user
Principal stringName - User Principal Name
- user
Programmatic booleanAccess - Azure User programmatic access
- user
Role stringTemplate Id - User Role Template Id
- user
Ttl string - User TTL
- app_
obj_ strid - Azure App Object Id
- azure_
administrative_ strunit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure_
client_ strid - Azure Client ID
- azure_
client_ strsecret - Azure Client Secret
- azure_
tenant_ strid - Azure Tenant ID
- custom_
username_ strtemplate - Customize how temporary usernames are generated using go template
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- dynamic_
secret_ strazure_ id - The ID of this resource.
- encryption_
key_ strname - Dynamic secret encryption key
- fixed_
user_ strclaim_ keyname - FixedUserClaimKeyname
- fixed_
user_ boolonly - Fixed user
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- name str
- Dynamic secret name
- password_
length str - The length of the password to be generated
- secure_
access_ strenable - Enable/Disable secure remote access [true/false]
- secure_
access_ strurl - secure_
access_ boolweb - Enable Web Secure Remote Access
- secure_
access_ boolweb_ browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure_
access_ boolweb_ proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
group_ strobj_ id - User Group Object Id
- user_
portal_ boolaccess - Azure User portal access
- user_
principal_ strname - User Principal Name
- user_
programmatic_ boolaccess - Azure User programmatic access
- user_
role_ strtemplate_ id - User Role Template Id
- user_
ttl str - User TTL
- app
Obj StringId - Azure App Object Id
- azure
Administrative StringUnit - Azure AD administrative unit (relevant only when azure-user-portal-access=true)
- azure
Client StringId - Azure Client ID
- azure
Client StringSecret - Azure Client Secret
- azure
Tenant StringId - Azure Tenant ID
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringAzure Id - The ID of this resource.
- encryption
Key StringName - Dynamic secret encryption key
- fixed
User StringClaim Keyname - FixedUserClaimKeyname
- fixed
User BooleanOnly - Fixed user
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringEnable - Enable/Disable secure remote access [true/false]
- secure
Access StringUrl - secure
Access BooleanWeb - Enable Web Secure Remote Access
- secure
Access BooleanWeb Browsing - Secure browser via Akeyless's Secure Remote Access (SRA)
- secure
Access BooleanWeb Proxy - Web-Proxy via Akeyless's Secure Remote Access (SRA)
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Group StringObj Id - User Group Object Id
- user
Portal BooleanAccess - Azure User portal access
- user
Principal StringName - User Principal Name
- user
Programmatic BooleanAccess - Azure User programmatic access
- user
Role StringTemplate Id - User Role Template Id
- user
Ttl String - User TTL
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
