published on Monday, Apr 27, 2026 by akeyless-community
published on Monday, Apr 27, 2026 by akeyless-community
Microsoft SQL Server dynamic secret resource
Create DynamicSecretMssql Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DynamicSecretMssql(name: string, args?: DynamicSecretMssqlArgs, opts?: CustomResourceOptions);@overload
def DynamicSecretMssql(resource_name: str,
args: Optional[DynamicSecretMssqlArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def DynamicSecretMssql(resource_name: str,
opts: Optional[ResourceOptions] = None,
custom_username_template: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_mssql_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
mssql_allowed_db_names: Optional[str] = None,
mssql_create_statements: Optional[str] = None,
mssql_dbname: Optional[str] = None,
mssql_host: Optional[str] = None,
mssql_password: Optional[str] = None,
mssql_port: Optional[str] = None,
mssql_revocation_statements: Optional[str] = None,
mssql_username: Optional[str] = None,
name: Optional[str] = None,
password_length: Optional[str] = None,
secure_access_bastion_issuer: Optional[str] = None,
secure_access_certificate_issuer: Optional[str] = None,
secure_access_db_name: Optional[str] = None,
secure_access_db_schema: Optional[str] = None,
secure_access_delay: Optional[float] = None,
secure_access_enable: Optional[str] = None,
secure_access_hosts: Optional[Sequence[str]] = None,
secure_access_web: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None)func NewDynamicSecretMssql(ctx *Context, name string, args *DynamicSecretMssqlArgs, opts ...ResourceOption) (*DynamicSecretMssql, error)public DynamicSecretMssql(string name, DynamicSecretMssqlArgs? args = null, CustomResourceOptions? opts = null)
public DynamicSecretMssql(String name, DynamicSecretMssqlArgs args)
public DynamicSecretMssql(String name, DynamicSecretMssqlArgs args, CustomResourceOptions options)
type: akeyless:DynamicSecretMssql
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 DynamicSecretMssqlArgs
- 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 DynamicSecretMssqlArgs
- 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 DynamicSecretMssqlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DynamicSecretMssqlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DynamicSecretMssqlArgs
- 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 dynamicSecretMssqlResource = new Akeyless.DynamicSecretMssql("dynamicSecretMssqlResource", new()
{
CustomUsernameTemplate = "string",
DeleteProtection = "string",
Description = "string",
DynamicSecretMssqlId = "string",
EncryptionKeyName = "string",
ItemCustomFields =
{
{ "string", "string" },
},
MssqlAllowedDbNames = "string",
MssqlCreateStatements = "string",
MssqlDbname = "string",
MssqlHost = "string",
MssqlPassword = "string",
MssqlPort = "string",
MssqlRevocationStatements = "string",
MssqlUsername = "string",
Name = "string",
PasswordLength = "string",
SecureAccessCertificateIssuer = "string",
SecureAccessDbName = "string",
SecureAccessDbSchema = "string",
SecureAccessDelay = 0,
SecureAccessEnable = "string",
SecureAccessHosts = new[]
{
"string",
},
SecureAccessWeb = false,
Tags = new[]
{
"string",
},
TargetName = "string",
UserTtl = "string",
});
example, err := akeyless.NewDynamicSecretMssql(ctx, "dynamicSecretMssqlResource", &akeyless.DynamicSecretMssqlArgs{
CustomUsernameTemplate: pulumi.String("string"),
DeleteProtection: pulumi.String("string"),
Description: pulumi.String("string"),
DynamicSecretMssqlId: pulumi.String("string"),
EncryptionKeyName: pulumi.String("string"),
ItemCustomFields: pulumi.StringMap{
"string": pulumi.String("string"),
},
MssqlAllowedDbNames: pulumi.String("string"),
MssqlCreateStatements: pulumi.String("string"),
MssqlDbname: pulumi.String("string"),
MssqlHost: pulumi.String("string"),
MssqlPassword: pulumi.String("string"),
MssqlPort: pulumi.String("string"),
MssqlRevocationStatements: pulumi.String("string"),
MssqlUsername: pulumi.String("string"),
Name: pulumi.String("string"),
PasswordLength: pulumi.String("string"),
SecureAccessCertificateIssuer: pulumi.String("string"),
SecureAccessDbName: pulumi.String("string"),
SecureAccessDbSchema: pulumi.String("string"),
SecureAccessDelay: pulumi.Float64(0),
SecureAccessEnable: pulumi.String("string"),
SecureAccessHosts: pulumi.StringArray{
pulumi.String("string"),
},
SecureAccessWeb: pulumi.Bool(false),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TargetName: pulumi.String("string"),
UserTtl: pulumi.String("string"),
})
var dynamicSecretMssqlResource = new DynamicSecretMssql("dynamicSecretMssqlResource", DynamicSecretMssqlArgs.builder()
.customUsernameTemplate("string")
.deleteProtection("string")
.description("string")
.dynamicSecretMssqlId("string")
.encryptionKeyName("string")
.itemCustomFields(Map.of("string", "string"))
.mssqlAllowedDbNames("string")
.mssqlCreateStatements("string")
.mssqlDbname("string")
.mssqlHost("string")
.mssqlPassword("string")
.mssqlPort("string")
.mssqlRevocationStatements("string")
.mssqlUsername("string")
.name("string")
.passwordLength("string")
.secureAccessCertificateIssuer("string")
.secureAccessDbName("string")
.secureAccessDbSchema("string")
.secureAccessDelay(0.0)
.secureAccessEnable("string")
.secureAccessHosts("string")
.secureAccessWeb(false)
.tags("string")
.targetName("string")
.userTtl("string")
.build());
dynamic_secret_mssql_resource = akeyless.DynamicSecretMssql("dynamicSecretMssqlResource",
custom_username_template="string",
delete_protection="string",
description="string",
dynamic_secret_mssql_id="string",
encryption_key_name="string",
item_custom_fields={
"string": "string",
},
mssql_allowed_db_names="string",
mssql_create_statements="string",
mssql_dbname="string",
mssql_host="string",
mssql_password="string",
mssql_port="string",
mssql_revocation_statements="string",
mssql_username="string",
name="string",
password_length="string",
secure_access_certificate_issuer="string",
secure_access_db_name="string",
secure_access_db_schema="string",
secure_access_delay=float(0),
secure_access_enable="string",
secure_access_hosts=["string"],
secure_access_web=False,
tags=["string"],
target_name="string",
user_ttl="string")
const dynamicSecretMssqlResource = new akeyless.DynamicSecretMssql("dynamicSecretMssqlResource", {
customUsernameTemplate: "string",
deleteProtection: "string",
description: "string",
dynamicSecretMssqlId: "string",
encryptionKeyName: "string",
itemCustomFields: {
string: "string",
},
mssqlAllowedDbNames: "string",
mssqlCreateStatements: "string",
mssqlDbname: "string",
mssqlHost: "string",
mssqlPassword: "string",
mssqlPort: "string",
mssqlRevocationStatements: "string",
mssqlUsername: "string",
name: "string",
passwordLength: "string",
secureAccessCertificateIssuer: "string",
secureAccessDbName: "string",
secureAccessDbSchema: "string",
secureAccessDelay: 0,
secureAccessEnable: "string",
secureAccessHosts: ["string"],
secureAccessWeb: false,
tags: ["string"],
targetName: "string",
userTtl: "string",
});
type: akeyless:DynamicSecretMssql
properties:
customUsernameTemplate: string
deleteProtection: string
description: string
dynamicSecretMssqlId: string
encryptionKeyName: string
itemCustomFields:
string: string
mssqlAllowedDbNames: string
mssqlCreateStatements: string
mssqlDbname: string
mssqlHost: string
mssqlPassword: string
mssqlPort: string
mssqlRevocationStatements: string
mssqlUsername: string
name: string
passwordLength: string
secureAccessCertificateIssuer: string
secureAccessDbName: string
secureAccessDbSchema: string
secureAccessDelay: 0
secureAccessEnable: string
secureAccessHosts:
- string
secureAccessWeb: false
tags:
- string
targetName: string
userTtl: string
DynamicSecretMssql 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 DynamicSecretMssql resource accepts the following input properties:
- 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 stringMssql Id - The ID of this resource.
- Encryption
Key stringName - Encrypt dynamic secret details with following key
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Mssql
Allowed stringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- Mssql
Create stringStatements - MSSQL Creation statements
- Mssql
Dbname string - MSSQL Name
- Mssql
Host string - MSSQL Host
- Mssql
Password string - MSSQL Password
- Mssql
Port string - MSSQL Port
- Mssql
Revocation stringStatements - MSSQL Revocation statements
- Mssql
Username string - MSSQL Username
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- Secure
Access stringDb Name - The DB Name
- Secure
Access stringDb Schema - The db schema
- Secure
Access doubleDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access List<string>Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- Secure
Access boolWeb - Enable Web Secure Remote Access
- List<string>
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- Target
Name string - Name of existing target to use in dynamic secret creation
- User
Ttl string - User TTL
- 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 stringMssql Id - The ID of this resource.
- Encryption
Key stringName - Encrypt dynamic secret details with following key
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Mssql
Allowed stringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- Mssql
Create stringStatements - MSSQL Creation statements
- Mssql
Dbname string - MSSQL Name
- Mssql
Host string - MSSQL Host
- Mssql
Password string - MSSQL Password
- Mssql
Port string - MSSQL Port
- Mssql
Revocation stringStatements - MSSQL Revocation statements
- Mssql
Username string - MSSQL Username
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- Secure
Access stringDb Name - The DB Name
- Secure
Access stringDb Schema - The db schema
- Secure
Access float64Delay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access []stringHosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- Secure
Access boolWeb - Enable Web Secure Remote Access
- []string
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- Target
Name string - Name of existing target to use in dynamic secret creation
- User
Ttl string - User TTL
- 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 StringMssql Id - The ID of this resource.
- encryption
Key StringName - Encrypt dynamic secret details with following key
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- mssql
Allowed StringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql
Create StringStatements - MSSQL Creation statements
- mssql
Dbname String - MSSQL Name
- mssql
Host String - MSSQL Host
- mssql
Password String - MSSQL Password
- mssql
Port String - MSSQL Port
- mssql
Revocation StringStatements - MSSQL Revocation statements
- mssql
Username String - MSSQL Username
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure
Access StringDb Name - The DB Name
- secure
Access StringDb Schema - The db schema
- secure
Access DoubleDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure
Access BooleanWeb - Enable Web Secure Remote Access
- List<String>
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target
Name String - Name of existing target to use in dynamic secret creation
- user
Ttl String - User TTL
- 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 stringMssql Id - The ID of this resource.
- encryption
Key stringName - Encrypt dynamic secret details with following key
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- mssql
Allowed stringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql
Create stringStatements - MSSQL Creation statements
- mssql
Dbname string - MSSQL Name
- mssql
Host string - MSSQL Host
- mssql
Password string - MSSQL Password
- mssql
Port string - MSSQL Port
- mssql
Revocation stringStatements - MSSQL Revocation statements
- mssql
Username string - MSSQL Username
- name string
- Dynamic secret name
- password
Length string - The length of the password to be generated
- secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access stringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure
Access stringDb Name - The DB Name
- secure
Access stringDb Schema - The db schema
- secure
Access numberDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access string[]Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure
Access booleanWeb - Enable Web Secure Remote Access
- string[]
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target
Name string - Name of existing target to use in dynamic secret creation
- user
Ttl string - User TTL
- 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_ strmssql_ id - The ID of this resource.
- encryption_
key_ strname - Encrypt dynamic secret details with following key
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- mssql_
allowed_ strdb_ names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql_
create_ strstatements - MSSQL Creation statements
- mssql_
dbname str - MSSQL Name
- mssql_
host str - MSSQL Host
- mssql_
password str - MSSQL Password
- mssql_
port str - MSSQL Port
- mssql_
revocation_ strstatements - MSSQL Revocation statements
- mssql_
username str - MSSQL Username
- name str
- Dynamic secret name
- password_
length str - The length of the password to be generated
- secure_
access_ strbastion_ issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure_
access_ strcertificate_ issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure_
access_ strdb_ name - The DB Name
- secure_
access_ strdb_ schema - The db schema
- secure_
access_ floatdelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure_
access_ strenable - Enable/Disable secure remote access, [true/false]
- secure_
access_ Sequence[str]hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure_
access_ boolweb - Enable Web Secure Remote Access
- Sequence[str]
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target_
name str - Name of existing target to use in dynamic secret creation
- user_
ttl str - User TTL
- 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 StringMssql Id - The ID of this resource.
- encryption
Key StringName - Encrypt dynamic secret details with following key
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- mssql
Allowed StringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql
Create StringStatements - MSSQL Creation statements
- mssql
Dbname String - MSSQL Name
- mssql
Host String - MSSQL Host
- mssql
Password String - MSSQL Password
- mssql
Port String - MSSQL Port
- mssql
Revocation StringStatements - MSSQL Revocation statements
- mssql
Username String - MSSQL Username
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure
Access StringDb Name - The DB Name
- secure
Access StringDb Schema - The db schema
- secure
Access NumberDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure
Access BooleanWeb - Enable Web Secure Remote Access
- List<String>
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target
Name String - Name of existing target to use in dynamic secret creation
- user
Ttl String - User TTL
Outputs
All input properties are implicitly available as output properties. Additionally, the DynamicSecretMssql 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 DynamicSecretMssql Resource
Get an existing DynamicSecretMssql 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?: DynamicSecretMssqlState, opts?: CustomResourceOptions): DynamicSecretMssql@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
custom_username_template: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_mssql_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
mssql_allowed_db_names: Optional[str] = None,
mssql_create_statements: Optional[str] = None,
mssql_dbname: Optional[str] = None,
mssql_host: Optional[str] = None,
mssql_password: Optional[str] = None,
mssql_port: Optional[str] = None,
mssql_revocation_statements: Optional[str] = None,
mssql_username: Optional[str] = None,
name: Optional[str] = None,
password_length: Optional[str] = None,
secure_access_bastion_issuer: Optional[str] = None,
secure_access_certificate_issuer: Optional[str] = None,
secure_access_db_name: Optional[str] = None,
secure_access_db_schema: Optional[str] = None,
secure_access_delay: Optional[float] = None,
secure_access_enable: Optional[str] = None,
secure_access_hosts: Optional[Sequence[str]] = None,
secure_access_web: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None) -> DynamicSecretMssqlfunc GetDynamicSecretMssql(ctx *Context, name string, id IDInput, state *DynamicSecretMssqlState, opts ...ResourceOption) (*DynamicSecretMssql, error)public static DynamicSecretMssql Get(string name, Input<string> id, DynamicSecretMssqlState? state, CustomResourceOptions? opts = null)public static DynamicSecretMssql get(String name, Output<String> id, DynamicSecretMssqlState state, CustomResourceOptions options)resources: _: type: akeyless:DynamicSecretMssql 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.
- 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 stringMssql Id - The ID of this resource.
- Encryption
Key stringName - Encrypt dynamic secret details with following key
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Mssql
Allowed stringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- Mssql
Create stringStatements - MSSQL Creation statements
- Mssql
Dbname string - MSSQL Name
- Mssql
Host string - MSSQL Host
- Mssql
Password string - MSSQL Password
- Mssql
Port string - MSSQL Port
- Mssql
Revocation stringStatements - MSSQL Revocation statements
- Mssql
Username string - MSSQL Username
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- Secure
Access stringDb Name - The DB Name
- Secure
Access stringDb Schema - The db schema
- Secure
Access doubleDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access List<string>Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- Secure
Access boolWeb - Enable Web Secure Remote Access
- List<string>
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- Target
Name string - Name of existing target to use in dynamic secret creation
- User
Ttl string - User TTL
- 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 stringMssql Id - The ID of this resource.
- Encryption
Key stringName - Encrypt dynamic secret details with following key
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Mssql
Allowed stringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- Mssql
Create stringStatements - MSSQL Creation statements
- Mssql
Dbname string - MSSQL Name
- Mssql
Host string - MSSQL Host
- Mssql
Password string - MSSQL Password
- Mssql
Port string - MSSQL Port
- Mssql
Revocation stringStatements - MSSQL Revocation statements
- Mssql
Username string - MSSQL Username
- Name string
- Dynamic secret name
- Password
Length string - The length of the password to be generated
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- Secure
Access stringDb Name - The DB Name
- Secure
Access stringDb Schema - The db schema
- Secure
Access float64Delay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access []stringHosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- Secure
Access boolWeb - Enable Web Secure Remote Access
- []string
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- Target
Name string - Name of existing target to use in dynamic secret creation
- User
Ttl string - User TTL
- 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 StringMssql Id - The ID of this resource.
- encryption
Key StringName - Encrypt dynamic secret details with following key
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- mssql
Allowed StringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql
Create StringStatements - MSSQL Creation statements
- mssql
Dbname String - MSSQL Name
- mssql
Host String - MSSQL Host
- mssql
Password String - MSSQL Password
- mssql
Port String - MSSQL Port
- mssql
Revocation StringStatements - MSSQL Revocation statements
- mssql
Username String - MSSQL Username
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure
Access StringDb Name - The DB Name
- secure
Access StringDb Schema - The db schema
- secure
Access DoubleDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure
Access BooleanWeb - Enable Web Secure Remote Access
- List<String>
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target
Name String - Name of existing target to use in dynamic secret creation
- user
Ttl String - User TTL
- 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 stringMssql Id - The ID of this resource.
- encryption
Key stringName - Encrypt dynamic secret details with following key
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- mssql
Allowed stringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql
Create stringStatements - MSSQL Creation statements
- mssql
Dbname string - MSSQL Name
- mssql
Host string - MSSQL Host
- mssql
Password string - MSSQL Password
- mssql
Port string - MSSQL Port
- mssql
Revocation stringStatements - MSSQL Revocation statements
- mssql
Username string - MSSQL Username
- name string
- Dynamic secret name
- password
Length string - The length of the password to be generated
- secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access stringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure
Access stringDb Name - The DB Name
- secure
Access stringDb Schema - The db schema
- secure
Access numberDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access string[]Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure
Access booleanWeb - Enable Web Secure Remote Access
- string[]
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target
Name string - Name of existing target to use in dynamic secret creation
- user
Ttl string - User TTL
- 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_ strmssql_ id - The ID of this resource.
- encryption_
key_ strname - Encrypt dynamic secret details with following key
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- mssql_
allowed_ strdb_ names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql_
create_ strstatements - MSSQL Creation statements
- mssql_
dbname str - MSSQL Name
- mssql_
host str - MSSQL Host
- mssql_
password str - MSSQL Password
- mssql_
port str - MSSQL Port
- mssql_
revocation_ strstatements - MSSQL Revocation statements
- mssql_
username str - MSSQL Username
- name str
- Dynamic secret name
- password_
length str - The length of the password to be generated
- secure_
access_ strbastion_ issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure_
access_ strcertificate_ issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure_
access_ strdb_ name - The DB Name
- secure_
access_ strdb_ schema - The db schema
- secure_
access_ floatdelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure_
access_ strenable - Enable/Disable secure remote access, [true/false]
- secure_
access_ Sequence[str]hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure_
access_ boolweb - Enable Web Secure Remote Access
- Sequence[str]
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target_
name str - Name of existing target to use in dynamic secret creation
- user_
ttl str - User TTL
- 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 StringMssql Id - The ID of this resource.
- encryption
Key StringName - Encrypt dynamic secret details with following key
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- mssql
Allowed StringDb Names - CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; "*" => any DB allowed; One or more names => user must choose from this list
- mssql
Create StringStatements - MSSQL Creation statements
- mssql
Dbname String - MSSQL Name
- mssql
Host String - MSSQL Host
- mssql
Password String - MSSQL Password
- mssql
Port String - MSSQL Port
- mssql
Revocation StringStatements - MSSQL Revocation statements
- mssql
Username String - MSSQL Username
- name String
- Dynamic secret name
- password
Length String - The length of the password to be generated
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringCertificate Issuer - Path to the SSH Certificate Issuer for your Akeyless Secure Access
- secure
Access StringDb Name - The DB Name
- secure
Access StringDb Schema - The db schema
- secure
Access NumberDelay - The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
- secure
Access BooleanWeb - Enable Web Secure Remote Access
- List<String>
- List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
- target
Name String - Name of existing target to use in dynamic secret creation
- 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
