1. Packages
  2. Akeyless Provider
  3. API Docs
  4. DynamicSecretMysql
akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community

akeyless.DynamicSecretMysql

Explore with Pulumi AI

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,
                       db_server_certificates: Optional[str] = None,
                       db_server_name: Optional[str] = None,
                       dynamic_secret_mysql_id: Optional[str] = None,
                       encryption_key_name: Optional[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_db_name: Optional[str] = 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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()
{
    DbServerCertificates = "string",
    DbServerName = "string",
    DynamicSecretMysqlId = "string",
    EncryptionKeyName = "string",
    MysqlCreationStatements = "string",
    MysqlDbname = "string",
    MysqlHost = "string",
    MysqlPassword = "string",
    MysqlPort = "string",
    MysqlRevocationStatements = "string",
    MysqlUsername = "string",
    Name = "string",
    PasswordLength = "string",
    SecureAccessBastionIssuer = "string",
    SecureAccessDbName = "string",
    SecureAccessEnable = "string",
    SecureAccessHosts = new[]
    {
        "string",
    },
    SecureAccessWeb = false,
    Ssl = false,
    SslCertificate = "string",
    Tags = new[]
    {
        "string",
    },
    TargetName = "string",
    UserTtl = "string",
});
Copy
example, err := akeyless.NewDynamicSecretMysql(ctx, "dynamicSecretMysqlResource", &akeyless.DynamicSecretMysqlArgs{
DbServerCertificates: pulumi.String("string"),
DbServerName: pulumi.String("string"),
DynamicSecretMysqlId: pulumi.String("string"),
EncryptionKeyName: 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"),
SecureAccessBastionIssuer: pulumi.String("string"),
SecureAccessDbName: pulumi.String("string"),
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"),
})
Copy
var dynamicSecretMysqlResource = new DynamicSecretMysql("dynamicSecretMysqlResource", DynamicSecretMysqlArgs.builder()
    .dbServerCertificates("string")
    .dbServerName("string")
    .dynamicSecretMysqlId("string")
    .encryptionKeyName("string")
    .mysqlCreationStatements("string")
    .mysqlDbname("string")
    .mysqlHost("string")
    .mysqlPassword("string")
    .mysqlPort("string")
    .mysqlRevocationStatements("string")
    .mysqlUsername("string")
    .name("string")
    .passwordLength("string")
    .secureAccessBastionIssuer("string")
    .secureAccessDbName("string")
    .secureAccessEnable("string")
    .secureAccessHosts("string")
    .secureAccessWeb(false)
    .ssl(false)
    .sslCertificate("string")
    .tags("string")
    .targetName("string")
    .userTtl("string")
    .build());
Copy
dynamic_secret_mysql_resource = akeyless.DynamicSecretMysql("dynamicSecretMysqlResource",
    db_server_certificates="string",
    db_server_name="string",
    dynamic_secret_mysql_id="string",
    encryption_key_name="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_bastion_issuer="string",
    secure_access_db_name="string",
    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")
Copy
const dynamicSecretMysqlResource = new akeyless.DynamicSecretMysql("dynamicSecretMysqlResource", {
    dbServerCertificates: "string",
    dbServerName: "string",
    dynamicSecretMysqlId: "string",
    encryptionKeyName: "string",
    mysqlCreationStatements: "string",
    mysqlDbname: "string",
    mysqlHost: "string",
    mysqlPassword: "string",
    mysqlPort: "string",
    mysqlRevocationStatements: "string",
    mysqlUsername: "string",
    name: "string",
    passwordLength: "string",
    secureAccessBastionIssuer: "string",
    secureAccessDbName: "string",
    secureAccessEnable: "string",
    secureAccessHosts: ["string"],
    secureAccessWeb: false,
    ssl: false,
    sslCertificate: "string",
    tags: ["string"],
    targetName: "string",
    userTtl: "string",
});
Copy
type: akeyless:DynamicSecretMysql
properties:
    dbServerCertificates: string
    dbServerName: string
    dynamicSecretMysqlId: string
    encryptionKeyName: string
    mysqlCreationStatements: string
    mysqlDbname: string
    mysqlHost: string
    mysqlPassword: string
    mysqlPort: string
    mysqlRevocationStatements: string
    mysqlUsername: string
    name: string
    passwordLength: string
    secureAccessBastionIssuer: string
    secureAccessDbName: string
    secureAccessEnable: string
    secureAccessHosts:
        - string
    secureAccessWeb: false
    ssl: false
    sslCertificate: string
    tags:
        - string
    targetName: string
    userTtl: string
Copy

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:

DbServerCertificates string
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
DbServerName string
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
DynamicSecretMysqlId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
MysqlCreationStatements string
MySQL Creation Statements
MysqlDbname string
MySQL DB name
MysqlHost string
MySQL host name
MysqlPassword string
MySQL password
MysqlPort string
MySQL port
MysqlRevocationStatements string
MySQL Revocation Statements
MysqlUsername string
MySQL user
Name string
Dynamic secret name
PasswordLength string
The length of the password to be generated
SecureAccessBastionIssuer string
Path to the SSH Certificate Issuer for your Akeyless Bastion
SecureAccessDbName string
Enable Web Secure Remote Access
SecureAccessEnable string
Enable/Disable secure remote access, [true/false]
SecureAccessHosts List<string>
Target DB servers for connections., For multiple values repeat this flag.
SecureAccessWeb bool
Enable Web Secure Remote Access
Ssl bool
Enable/Disable SSL [true/false]
SslCertificate string
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
Tags List<string>
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
TargetName string
Name of existing target to use in dynamic secret creation
UserTtl string
User TTL
DbServerCertificates string
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
DbServerName string
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
DynamicSecretMysqlId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
MysqlCreationStatements string
MySQL Creation Statements
MysqlDbname string
MySQL DB name
MysqlHost string
MySQL host name
MysqlPassword string
MySQL password
MysqlPort string
MySQL port
MysqlRevocationStatements string
MySQL Revocation Statements
MysqlUsername string
MySQL user
Name string
Dynamic secret name
PasswordLength string
The length of the password to be generated
SecureAccessBastionIssuer string
Path to the SSH Certificate Issuer for your Akeyless Bastion
SecureAccessDbName string
Enable Web Secure Remote Access
SecureAccessEnable string
Enable/Disable secure remote access, [true/false]
SecureAccessHosts []string
Target DB servers for connections., For multiple values repeat this flag.
SecureAccessWeb bool
Enable Web Secure Remote Access
Ssl bool
Enable/Disable SSL [true/false]
SslCertificate string
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
Tags []string
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
TargetName string
Name of existing target to use in dynamic secret creation
UserTtl string
User TTL
dbServerCertificates String
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
dbServerName String
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamicSecretMysqlId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
mysqlCreationStatements String
MySQL Creation Statements
mysqlDbname String
MySQL DB name
mysqlHost String
MySQL host name
mysqlPassword String
MySQL password
mysqlPort String
MySQL port
mysqlRevocationStatements String
MySQL Revocation Statements
mysqlUsername String
MySQL user
name String
Dynamic secret name
passwordLength String
The length of the password to be generated
secureAccessBastionIssuer String
Path to the SSH Certificate Issuer for your Akeyless Bastion
secureAccessDbName String
Enable Web Secure Remote Access
secureAccessEnable String
Enable/Disable secure remote access, [true/false]
secureAccessHosts List<String>
Target DB servers for connections., For multiple values repeat this flag.
secureAccessWeb Boolean
Enable Web Secure Remote Access
ssl Boolean
Enable/Disable SSL [true/false]
sslCertificate String
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags List<String>
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
targetName String
Name of existing target to use in dynamic secret creation
userTtl String
User TTL
dbServerCertificates string
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
dbServerName string
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamicSecretMysqlId string
The ID of this resource.
encryptionKeyName string
Encrypt dynamic secret details with following key
mysqlCreationStatements string
MySQL Creation Statements
mysqlDbname string
MySQL DB name
mysqlHost string
MySQL host name
mysqlPassword string
MySQL password
mysqlPort string
MySQL port
mysqlRevocationStatements string
MySQL Revocation Statements
mysqlUsername string
MySQL user
name string
Dynamic secret name
passwordLength string
The length of the password to be generated
secureAccessBastionIssuer string
Path to the SSH Certificate Issuer for your Akeyless Bastion
secureAccessDbName string
Enable Web Secure Remote Access
secureAccessEnable string
Enable/Disable secure remote access, [true/false]
secureAccessHosts string[]
Target DB servers for connections., For multiple values repeat this flag.
secureAccessWeb boolean
Enable Web Secure Remote Access
ssl boolean
Enable/Disable SSL [true/false]
sslCertificate string
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags string[]
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
targetName string
Name of existing target to use in dynamic secret creation
userTtl string
User TTL
db_server_certificates str
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
db_server_name str
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamic_secret_mysql_id str
The ID of this resource.
encryption_key_name str
Encrypt dynamic secret details with following key
mysql_creation_statements str
MySQL Creation Statements
mysql_dbname str
MySQL DB name
mysql_host str
MySQL host name
mysql_password str
MySQL password
mysql_port str
MySQL port
mysql_revocation_statements str
MySQL Revocation Statements
mysql_username str
MySQL user
name str
Dynamic secret name
password_length str
The length of the password to be generated
secure_access_bastion_issuer str
Path to the SSH Certificate Issuer for your Akeyless Bastion
secure_access_db_name str
Enable Web Secure Remote Access
secure_access_enable str
Enable/Disable secure remote access, [true/false]
secure_access_hosts Sequence[str]
Target DB servers for connections., For multiple values repeat this flag.
secure_access_web bool
Enable Web Secure Remote Access
ssl bool
Enable/Disable SSL [true/false]
ssl_certificate str
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags 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
dbServerCertificates String
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
dbServerName String
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamicSecretMysqlId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
mysqlCreationStatements String
MySQL Creation Statements
mysqlDbname String
MySQL DB name
mysqlHost String
MySQL host name
mysqlPassword String
MySQL password
mysqlPort String
MySQL port
mysqlRevocationStatements String
MySQL Revocation Statements
mysqlUsername String
MySQL user
name String
Dynamic secret name
passwordLength String
The length of the password to be generated
secureAccessBastionIssuer String
Path to the SSH Certificate Issuer for your Akeyless Bastion
secureAccessDbName String
Enable Web Secure Remote Access
secureAccessEnable String
Enable/Disable secure remote access, [true/false]
secureAccessHosts List<String>
Target DB servers for connections., For multiple values repeat this flag.
secureAccessWeb Boolean
Enable Web Secure Remote Access
ssl Boolean
Enable/Disable SSL [true/false]
sslCertificate String
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags List<String>
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
targetName String
Name of existing target to use in dynamic secret creation
userTtl 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,
        db_server_certificates: Optional[str] = None,
        db_server_name: Optional[str] = None,
        dynamic_secret_mysql_id: Optional[str] = None,
        encryption_key_name: Optional[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_db_name: Optional[str] = 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) -> DynamicSecretMysql
func 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
DbServerCertificates string
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
DbServerName string
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
DynamicSecretMysqlId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
MysqlCreationStatements string
MySQL Creation Statements
MysqlDbname string
MySQL DB name
MysqlHost string
MySQL host name
MysqlPassword string
MySQL password
MysqlPort string
MySQL port
MysqlRevocationStatements string
MySQL Revocation Statements
MysqlUsername string
MySQL user
Name string
Dynamic secret name
PasswordLength string
The length of the password to be generated
SecureAccessBastionIssuer string
Path to the SSH Certificate Issuer for your Akeyless Bastion
SecureAccessDbName string
Enable Web Secure Remote Access
SecureAccessEnable string
Enable/Disable secure remote access, [true/false]
SecureAccessHosts List<string>
Target DB servers for connections., For multiple values repeat this flag.
SecureAccessWeb bool
Enable Web Secure Remote Access
Ssl bool
Enable/Disable SSL [true/false]
SslCertificate string
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
Tags List<string>
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
TargetName string
Name of existing target to use in dynamic secret creation
UserTtl string
User TTL
DbServerCertificates string
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
DbServerName string
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
DynamicSecretMysqlId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
MysqlCreationStatements string
MySQL Creation Statements
MysqlDbname string
MySQL DB name
MysqlHost string
MySQL host name
MysqlPassword string
MySQL password
MysqlPort string
MySQL port
MysqlRevocationStatements string
MySQL Revocation Statements
MysqlUsername string
MySQL user
Name string
Dynamic secret name
PasswordLength string
The length of the password to be generated
SecureAccessBastionIssuer string
Path to the SSH Certificate Issuer for your Akeyless Bastion
SecureAccessDbName string
Enable Web Secure Remote Access
SecureAccessEnable string
Enable/Disable secure remote access, [true/false]
SecureAccessHosts []string
Target DB servers for connections., For multiple values repeat this flag.
SecureAccessWeb bool
Enable Web Secure Remote Access
Ssl bool
Enable/Disable SSL [true/false]
SslCertificate string
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
Tags []string
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
TargetName string
Name of existing target to use in dynamic secret creation
UserTtl string
User TTL
dbServerCertificates String
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
dbServerName String
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamicSecretMysqlId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
mysqlCreationStatements String
MySQL Creation Statements
mysqlDbname String
MySQL DB name
mysqlHost String
MySQL host name
mysqlPassword String
MySQL password
mysqlPort String
MySQL port
mysqlRevocationStatements String
MySQL Revocation Statements
mysqlUsername String
MySQL user
name String
Dynamic secret name
passwordLength String
The length of the password to be generated
secureAccessBastionIssuer String
Path to the SSH Certificate Issuer for your Akeyless Bastion
secureAccessDbName String
Enable Web Secure Remote Access
secureAccessEnable String
Enable/Disable secure remote access, [true/false]
secureAccessHosts List<String>
Target DB servers for connections., For multiple values repeat this flag.
secureAccessWeb Boolean
Enable Web Secure Remote Access
ssl Boolean
Enable/Disable SSL [true/false]
sslCertificate String
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags List<String>
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
targetName String
Name of existing target to use in dynamic secret creation
userTtl String
User TTL
dbServerCertificates string
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
dbServerName string
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamicSecretMysqlId string
The ID of this resource.
encryptionKeyName string
Encrypt dynamic secret details with following key
mysqlCreationStatements string
MySQL Creation Statements
mysqlDbname string
MySQL DB name
mysqlHost string
MySQL host name
mysqlPassword string
MySQL password
mysqlPort string
MySQL port
mysqlRevocationStatements string
MySQL Revocation Statements
mysqlUsername string
MySQL user
name string
Dynamic secret name
passwordLength string
The length of the password to be generated
secureAccessBastionIssuer string
Path to the SSH Certificate Issuer for your Akeyless Bastion
secureAccessDbName string
Enable Web Secure Remote Access
secureAccessEnable string
Enable/Disable secure remote access, [true/false]
secureAccessHosts string[]
Target DB servers for connections., For multiple values repeat this flag.
secureAccessWeb boolean
Enable Web Secure Remote Access
ssl boolean
Enable/Disable SSL [true/false]
sslCertificate string
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags string[]
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
targetName string
Name of existing target to use in dynamic secret creation
userTtl string
User TTL
db_server_certificates str
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
db_server_name str
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamic_secret_mysql_id str
The ID of this resource.
encryption_key_name str
Encrypt dynamic secret details with following key
mysql_creation_statements str
MySQL Creation Statements
mysql_dbname str
MySQL DB name
mysql_host str
MySQL host name
mysql_password str
MySQL password
mysql_port str
MySQL port
mysql_revocation_statements str
MySQL Revocation Statements
mysql_username str
MySQL user
name str
Dynamic secret name
password_length str
The length of the password to be generated
secure_access_bastion_issuer str
Path to the SSH Certificate Issuer for your Akeyless Bastion
secure_access_db_name str
Enable Web Secure Remote Access
secure_access_enable str
Enable/Disable secure remote access, [true/false]
secure_access_hosts Sequence[str]
Target DB servers for connections., For multiple values repeat this flag.
secure_access_web bool
Enable Web Secure Remote Access
ssl bool
Enable/Disable SSL [true/false]
ssl_certificate str
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags 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
dbServerCertificates String
the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
dbServerName String
Server name is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address
dynamicSecretMysqlId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
mysqlCreationStatements String
MySQL Creation Statements
mysqlDbname String
MySQL DB name
mysqlHost String
MySQL host name
mysqlPassword String
MySQL password
mysqlPort String
MySQL port
mysqlRevocationStatements String
MySQL Revocation Statements
mysqlUsername String
MySQL user
name String
Dynamic secret name
passwordLength String
The length of the password to be generated
secureAccessBastionIssuer String
Path to the SSH Certificate Issuer for your Akeyless Bastion
secureAccessDbName String
Enable Web Secure Remote Access
secureAccessEnable String
Enable/Disable secure remote access, [true/false]
secureAccessHosts List<String>
Target DB servers for connections., For multiple values repeat this flag.
secureAccessWeb Boolean
Enable Web Secure Remote Access
ssl Boolean
Enable/Disable SSL [true/false]
sslCertificate String
SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA)
tags List<String>
List of the tags attached to this secret. To specify multiple tags use argument multiple times: -t Tag1 -t Tag2
targetName String
Name of existing target to use in dynamic secret creation
userTtl String
User TTL

Package Details

Repository
akeyless akeyless-community/terraform-provider-akeyless
License
Notes
This Pulumi package is based on the akeyless Terraform Provider.