published on Monday, Apr 27, 2026 by akeyless-community
published on Monday, Apr 27, 2026 by akeyless-community
MySQL dynamic secret resource
Create DynamicSecretMysql Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DynamicSecretMysql(name: string, args?: DynamicSecretMysqlArgs, opts?: CustomResourceOptions);@overload
def DynamicSecretMysql(resource_name: str,
args: Optional[DynamicSecretMysqlArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def DynamicSecretMysql(resource_name: str,
opts: Optional[ResourceOptions] = None,
custom_username_template: Optional[str] = None,
db_server_certificates: Optional[str] = None,
db_server_name: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_mysql_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
mysql_creation_statements: Optional[str] = None,
mysql_dbname: Optional[str] = None,
mysql_host: Optional[str] = None,
mysql_password: Optional[str] = None,
mysql_port: Optional[str] = None,
mysql_revocation_statements: Optional[str] = None,
mysql_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_delay: Optional[float] = None,
secure_access_enable: Optional[str] = None,
secure_access_hosts: Optional[Sequence[str]] = None,
secure_access_web: Optional[bool] = None,
ssl: Optional[bool] = None,
ssl_certificate: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None)func NewDynamicSecretMysql(ctx *Context, name string, args *DynamicSecretMysqlArgs, opts ...ResourceOption) (*DynamicSecretMysql, error)public DynamicSecretMysql(string name, DynamicSecretMysqlArgs? args = null, CustomResourceOptions? opts = null)
public DynamicSecretMysql(String name, DynamicSecretMysqlArgs args)
public DynamicSecretMysql(String name, DynamicSecretMysqlArgs args, CustomResourceOptions options)
type: akeyless:DynamicSecretMysql
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 DynamicSecretMysqlArgs
- 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 DynamicSecretMysqlArgs
- 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 DynamicSecretMysqlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DynamicSecretMysqlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DynamicSecretMysqlArgs
- 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 dynamicSecretMysqlResource = new Akeyless.DynamicSecretMysql("dynamicSecretMysqlResource", new()
{
CustomUsernameTemplate = "string",
DbServerCertificates = "string",
DbServerName = "string",
DeleteProtection = "string",
Description = "string",
DynamicSecretMysqlId = "string",
EncryptionKeyName = "string",
ItemCustomFields =
{
{ "string", "string" },
},
MysqlCreationStatements = "string",
MysqlDbname = "string",
MysqlHost = "string",
MysqlPassword = "string",
MysqlPort = "string",
MysqlRevocationStatements = "string",
MysqlUsername = "string",
Name = "string",
PasswordLength = "string",
SecureAccessCertificateIssuer = "string",
SecureAccessDbName = "string",
SecureAccessDelay = 0,
SecureAccessEnable = "string",
SecureAccessHosts = new[]
{
"string",
},
SecureAccessWeb = false,
Ssl = false,
SslCertificate = "string",
Tags = new[]
{
"string",
},
TargetName = "string",
UserTtl = "string",
});
example, err := akeyless.NewDynamicSecretMysql(ctx, "dynamicSecretMysqlResource", &akeyless.DynamicSecretMysqlArgs{
CustomUsernameTemplate: pulumi.String("string"),
DbServerCertificates: pulumi.String("string"),
DbServerName: pulumi.String("string"),
DeleteProtection: pulumi.String("string"),
Description: pulumi.String("string"),
DynamicSecretMysqlId: pulumi.String("string"),
EncryptionKeyName: pulumi.String("string"),
ItemCustomFields: pulumi.StringMap{
"string": pulumi.String("string"),
},
MysqlCreationStatements: pulumi.String("string"),
MysqlDbname: pulumi.String("string"),
MysqlHost: pulumi.String("string"),
MysqlPassword: pulumi.String("string"),
MysqlPort: pulumi.String("string"),
MysqlRevocationStatements: pulumi.String("string"),
MysqlUsername: pulumi.String("string"),
Name: pulumi.String("string"),
PasswordLength: pulumi.String("string"),
SecureAccessCertificateIssuer: pulumi.String("string"),
SecureAccessDbName: pulumi.String("string"),
SecureAccessDelay: pulumi.Float64(0),
SecureAccessEnable: pulumi.String("string"),
SecureAccessHosts: pulumi.StringArray{
pulumi.String("string"),
},
SecureAccessWeb: pulumi.Bool(false),
Ssl: pulumi.Bool(false),
SslCertificate: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TargetName: pulumi.String("string"),
UserTtl: pulumi.String("string"),
})
var dynamicSecretMysqlResource = new DynamicSecretMysql("dynamicSecretMysqlResource", DynamicSecretMysqlArgs.builder()
.customUsernameTemplate("string")
.dbServerCertificates("string")
.dbServerName("string")
.deleteProtection("string")
.description("string")
.dynamicSecretMysqlId("string")
.encryptionKeyName("string")
.itemCustomFields(Map.of("string", "string"))
.mysqlCreationStatements("string")
.mysqlDbname("string")
.mysqlHost("string")
.mysqlPassword("string")
.mysqlPort("string")
.mysqlRevocationStatements("string")
.mysqlUsername("string")
.name("string")
.passwordLength("string")
.secureAccessCertificateIssuer("string")
.secureAccessDbName("string")
.secureAccessDelay(0.0)
.secureAccessEnable("string")
.secureAccessHosts("string")
.secureAccessWeb(false)
.ssl(false)
.sslCertificate("string")
.tags("string")
.targetName("string")
.userTtl("string")
.build());
dynamic_secret_mysql_resource = akeyless.DynamicSecretMysql("dynamicSecretMysqlResource",
custom_username_template="string",
db_server_certificates="string",
db_server_name="string",
delete_protection="string",
description="string",
dynamic_secret_mysql_id="string",
encryption_key_name="string",
item_custom_fields={
"string": "string",
},
mysql_creation_statements="string",
mysql_dbname="string",
mysql_host="string",
mysql_password="string",
mysql_port="string",
mysql_revocation_statements="string",
mysql_username="string",
name="string",
password_length="string",
secure_access_certificate_issuer="string",
secure_access_db_name="string",
secure_access_delay=float(0),
secure_access_enable="string",
secure_access_hosts=["string"],
secure_access_web=False,
ssl=False,
ssl_certificate="string",
tags=["string"],
target_name="string",
user_ttl="string")
const dynamicSecretMysqlResource = new akeyless.DynamicSecretMysql("dynamicSecretMysqlResource", {
customUsernameTemplate: "string",
dbServerCertificates: "string",
dbServerName: "string",
deleteProtection: "string",
description: "string",
dynamicSecretMysqlId: "string",
encryptionKeyName: "string",
itemCustomFields: {
string: "string",
},
mysqlCreationStatements: "string",
mysqlDbname: "string",
mysqlHost: "string",
mysqlPassword: "string",
mysqlPort: "string",
mysqlRevocationStatements: "string",
mysqlUsername: "string",
name: "string",
passwordLength: "string",
secureAccessCertificateIssuer: "string",
secureAccessDbName: "string",
secureAccessDelay: 0,
secureAccessEnable: "string",
secureAccessHosts: ["string"],
secureAccessWeb: false,
ssl: false,
sslCertificate: "string",
tags: ["string"],
targetName: "string",
userTtl: "string",
});
type: akeyless:DynamicSecretMysql
properties:
customUsernameTemplate: string
dbServerCertificates: string
dbServerName: string
deleteProtection: string
description: string
dynamicSecretMysqlId: string
encryptionKeyName: string
itemCustomFields:
string: string
mysqlCreationStatements: string
mysqlDbname: string
mysqlHost: string
mysqlPassword: string
mysqlPort: string
mysqlRevocationStatements: string
mysqlUsername: string
name: string
passwordLength: string
secureAccessCertificateIssuer: string
secureAccessDbName: string
secureAccessDelay: 0
secureAccessEnable: string
secureAccessHosts:
- string
secureAccessWeb: false
ssl: false
sslCertificate: string
tags:
- string
targetName: string
userTtl: string
DynamicSecretMysql 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 DynamicSecretMysql resource accepts the following input properties:
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Db
Server stringCertificates - (Optional) DB server certificates
- Db
Server stringName - (Optional) Server name for certificate verification
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringMysql Id - The ID of this resource.
- Encryption
Key stringName - Dynamic producer encryption key
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Mysql
Creation stringStatements - MySQL Creation Statements
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL Host
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Revocation stringStatements - MySQL Revocation Statements
- Mysql
Username string - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- Ssl bool
- Enable/Disable SSL [true/false]
- Ssl
Certificate string - SSL connection certificate
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Db
Server stringCertificates - (Optional) DB server certificates
- Db
Server stringName - (Optional) Server name for certificate verification
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringMysql Id - The ID of this resource.
- Encryption
Key stringName - Dynamic producer encryption key
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Mysql
Creation stringStatements - MySQL Creation Statements
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL Host
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Revocation stringStatements - MySQL Revocation Statements
- Mysql
Username string - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- Ssl bool
- Enable/Disable SSL [true/false]
- Ssl
Certificate string - SSL connection certificate
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- db
Server StringCertificates - (Optional) DB server certificates
- db
Server StringName - (Optional) Server name for certificate verification
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringMysql Id - The ID of this resource.
- encryption
Key StringName - Dynamic producer encryption key
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- mysql
Creation StringStatements - MySQL Creation Statements
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL Host
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Revocation StringStatements - MySQL Revocation Statements
- mysql
Username String - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl Boolean
- Enable/Disable SSL [true/false]
- ssl
Certificate String - SSL connection certificate
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl String - User TTL
- custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- db
Server stringCertificates - (Optional) DB server certificates
- db
Server stringName - (Optional) Server name for certificate verification
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic
Secret stringMysql Id - The ID of this resource.
- encryption
Key stringName - Dynamic producer encryption key
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- mysql
Creation stringStatements - MySQL Creation Statements
- mysql
Dbname string - MySQL DB name
- mysql
Host string - MySQL Host
- mysql
Password string - MySQL password
- mysql
Port string - MySQL port
- mysql
Revocation stringStatements - MySQL Revocation Statements
- mysql
Username string - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl boolean
- Enable/Disable SSL [true/false]
- ssl
Certificate string - SSL connection certificate
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Ttl string - User TTL
- custom_
username_ strtemplate - Customize how temporary usernames are generated using go template
- db_
server_ strcertificates - (Optional) DB server certificates
- db_
server_ strname - (Optional) Server name for certificate verification
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- dynamic_
secret_ strmysql_ id - The ID of this resource.
- encryption_
key_ strname - Dynamic producer encryption key
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- mysql_
creation_ strstatements - MySQL Creation Statements
- mysql_
dbname str - MySQL DB name
- mysql_
host str - MySQL Host
- mysql_
password str - MySQL password
- mysql_
port str - MySQL port
- mysql_
revocation_ strstatements - MySQL Revocation Statements
- mysql_
username str - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl bool
- Enable/Disable SSL [true/false]
- ssl_
certificate str - SSL connection certificate
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
ttl str - User TTL
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- db
Server StringCertificates - (Optional) DB server certificates
- db
Server StringName - (Optional) Server name for certificate verification
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringMysql Id - The ID of this resource.
- encryption
Key StringName - Dynamic producer encryption key
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- mysql
Creation StringStatements - MySQL Creation Statements
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL Host
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Revocation StringStatements - MySQL Revocation Statements
- mysql
Username String - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl Boolean
- Enable/Disable SSL [true/false]
- ssl
Certificate String - SSL connection certificate
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl String - User TTL
Outputs
All input properties are implicitly available as output properties. Additionally, the DynamicSecretMysql 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 DynamicSecretMysql Resource
Get an existing DynamicSecretMysql 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?: DynamicSecretMysqlState, opts?: CustomResourceOptions): DynamicSecretMysql@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
custom_username_template: Optional[str] = None,
db_server_certificates: Optional[str] = None,
db_server_name: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_mysql_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
mysql_creation_statements: Optional[str] = None,
mysql_dbname: Optional[str] = None,
mysql_host: Optional[str] = None,
mysql_password: Optional[str] = None,
mysql_port: Optional[str] = None,
mysql_revocation_statements: Optional[str] = None,
mysql_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_delay: Optional[float] = None,
secure_access_enable: Optional[str] = None,
secure_access_hosts: Optional[Sequence[str]] = None,
secure_access_web: Optional[bool] = None,
ssl: Optional[bool] = None,
ssl_certificate: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None) -> DynamicSecretMysqlfunc GetDynamicSecretMysql(ctx *Context, name string, id IDInput, state *DynamicSecretMysqlState, opts ...ResourceOption) (*DynamicSecretMysql, error)public static DynamicSecretMysql Get(string name, Input<string> id, DynamicSecretMysqlState? state, CustomResourceOptions? opts = null)public static DynamicSecretMysql get(String name, Output<String> id, DynamicSecretMysqlState state, CustomResourceOptions options)resources: _: type: akeyless:DynamicSecretMysql 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
- Db
Server stringCertificates - (Optional) DB server certificates
- Db
Server stringName - (Optional) Server name for certificate verification
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringMysql Id - The ID of this resource.
- Encryption
Key stringName - Dynamic producer encryption key
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Mysql
Creation stringStatements - MySQL Creation Statements
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL Host
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Revocation stringStatements - MySQL Revocation Statements
- Mysql
Username string - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- Ssl bool
- Enable/Disable SSL [true/false]
- Ssl
Certificate string - SSL connection certificate
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Db
Server stringCertificates - (Optional) DB server certificates
- Db
Server stringName - (Optional) Server name for certificate verification
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringMysql Id - The ID of this resource.
- Encryption
Key stringName - Dynamic producer encryption key
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Mysql
Creation stringStatements - MySQL Creation Statements
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL Host
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Revocation stringStatements - MySQL Revocation Statements
- Mysql
Username string - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- Ssl bool
- Enable/Disable SSL [true/false]
- Ssl
Certificate string - SSL connection certificate
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- db
Server StringCertificates - (Optional) DB server certificates
- db
Server StringName - (Optional) Server name for certificate verification
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringMysql Id - The ID of this resource.
- encryption
Key StringName - Dynamic producer encryption key
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- mysql
Creation StringStatements - MySQL Creation Statements
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL Host
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Revocation StringStatements - MySQL Revocation Statements
- mysql
Username String - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl Boolean
- Enable/Disable SSL [true/false]
- ssl
Certificate String - SSL connection certificate
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl String - User TTL
- custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- db
Server stringCertificates - (Optional) DB server certificates
- db
Server stringName - (Optional) Server name for certificate verification
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic
Secret stringMysql Id - The ID of this resource.
- encryption
Key stringName - Dynamic producer encryption key
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- mysql
Creation stringStatements - MySQL Creation Statements
- mysql
Dbname string - MySQL DB name
- mysql
Host string - MySQL Host
- mysql
Password string - MySQL password
- mysql
Port string - MySQL port
- mysql
Revocation stringStatements - MySQL Revocation Statements
- mysql
Username string - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl boolean
- Enable/Disable SSL [true/false]
- ssl
Certificate string - SSL connection certificate
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Ttl string - User TTL
- custom_
username_ strtemplate - Customize how temporary usernames are generated using go template
- db_
server_ strcertificates - (Optional) DB server certificates
- db_
server_ strname - (Optional) Server name for certificate verification
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- dynamic_
secret_ strmysql_ id - The ID of this resource.
- encryption_
key_ strname - Dynamic producer encryption key
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- mysql_
creation_ strstatements - MySQL Creation Statements
- mysql_
dbname str - MySQL DB name
- mysql_
host str - MySQL Host
- mysql_
password str - MySQL password
- mysql_
port str - MySQL port
- mysql_
revocation_ strstatements - MySQL Revocation Statements
- mysql_
username str - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl bool
- Enable/Disable SSL [true/false]
- ssl_
certificate str - SSL connection certificate
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
ttl str - User TTL
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- db
Server StringCertificates - (Optional) DB server certificates
- db
Server StringName - (Optional) Server name for certificate verification
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringMysql Id - The ID of this resource.
- encryption
Key StringName - Dynamic producer encryption key
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- mysql
Creation StringStatements - MySQL Creation Statements
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL Host
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Revocation StringStatements - MySQL Revocation Statements
- mysql
Username String - MySQL 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 (relevant only for DB Dynamic-Secret)
- 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
- ssl Boolean
- Enable/Disable SSL [true/false]
- ssl
Certificate String - SSL connection certificate
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- 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
