akeyless.ProducerMysql
Explore with Pulumi AI
MySQL producer resource
Create ProducerMysql Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProducerMysql(name: string, args?: ProducerMysqlArgs, opts?: CustomResourceOptions);
@overload
def ProducerMysql(resource_name: str,
args: Optional[ProducerMysqlArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ProducerMysql(resource_name: str,
opts: Optional[ResourceOptions] = None,
db_server_certificates: Optional[str] = None,
db_server_name: Optional[str] = None,
mysql_dbname: Optional[str] = None,
mysql_host: Optional[str] = None,
mysql_password: Optional[str] = None,
mysql_port: Optional[str] = None,
mysql_screation_statements: Optional[str] = None,
mysql_username: Optional[str] = None,
name: Optional[str] = None,
producer_encryption_key_name: Optional[str] = None,
producer_mysql_id: 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,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None)
func NewProducerMysql(ctx *Context, name string, args *ProducerMysqlArgs, opts ...ResourceOption) (*ProducerMysql, error)
public ProducerMysql(string name, ProducerMysqlArgs? args = null, CustomResourceOptions? opts = null)
public ProducerMysql(String name, ProducerMysqlArgs args)
public ProducerMysql(String name, ProducerMysqlArgs args, CustomResourceOptions options)
type: akeyless:ProducerMysql
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 ProducerMysqlArgs
- 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 ProducerMysqlArgs
- 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 ProducerMysqlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProducerMysqlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProducerMysqlArgs
- 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 producerMysqlResource = new Akeyless.ProducerMysql("producerMysqlResource", new()
{
DbServerCertificates = "string",
DbServerName = "string",
MysqlDbname = "string",
MysqlHost = "string",
MysqlPassword = "string",
MysqlPort = "string",
MysqlScreationStatements = "string",
MysqlUsername = "string",
Name = "string",
ProducerEncryptionKeyName = "string",
ProducerMysqlId = "string",
SecureAccessBastionIssuer = "string",
SecureAccessDbName = "string",
SecureAccessEnable = "string",
SecureAccessHosts = new[]
{
"string",
},
SecureAccessWeb = false,
Tags = new[]
{
"string",
},
TargetName = "string",
UserTtl = "string",
});
example, err := akeyless.NewProducerMysql(ctx, "producerMysqlResource", &akeyless.ProducerMysqlArgs{
DbServerCertificates: pulumi.String("string"),
DbServerName: pulumi.String("string"),
MysqlDbname: pulumi.String("string"),
MysqlHost: pulumi.String("string"),
MysqlPassword: pulumi.String("string"),
MysqlPort: pulumi.String("string"),
MysqlScreationStatements: pulumi.String("string"),
MysqlUsername: pulumi.String("string"),
Name: pulumi.String("string"),
ProducerEncryptionKeyName: pulumi.String("string"),
ProducerMysqlId: 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),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TargetName: pulumi.String("string"),
UserTtl: pulumi.String("string"),
})
var producerMysqlResource = new ProducerMysql("producerMysqlResource", ProducerMysqlArgs.builder()
.dbServerCertificates("string")
.dbServerName("string")
.mysqlDbname("string")
.mysqlHost("string")
.mysqlPassword("string")
.mysqlPort("string")
.mysqlScreationStatements("string")
.mysqlUsername("string")
.name("string")
.producerEncryptionKeyName("string")
.producerMysqlId("string")
.secureAccessBastionIssuer("string")
.secureAccessDbName("string")
.secureAccessEnable("string")
.secureAccessHosts("string")
.secureAccessWeb(false)
.tags("string")
.targetName("string")
.userTtl("string")
.build());
producer_mysql_resource = akeyless.ProducerMysql("producerMysqlResource",
db_server_certificates="string",
db_server_name="string",
mysql_dbname="string",
mysql_host="string",
mysql_password="string",
mysql_port="string",
mysql_screation_statements="string",
mysql_username="string",
name="string",
producer_encryption_key_name="string",
producer_mysql_id="string",
secure_access_bastion_issuer="string",
secure_access_db_name="string",
secure_access_enable="string",
secure_access_hosts=["string"],
secure_access_web=False,
tags=["string"],
target_name="string",
user_ttl="string")
const producerMysqlResource = new akeyless.ProducerMysql("producerMysqlResource", {
dbServerCertificates: "string",
dbServerName: "string",
mysqlDbname: "string",
mysqlHost: "string",
mysqlPassword: "string",
mysqlPort: "string",
mysqlScreationStatements: "string",
mysqlUsername: "string",
name: "string",
producerEncryptionKeyName: "string",
producerMysqlId: "string",
secureAccessBastionIssuer: "string",
secureAccessDbName: "string",
secureAccessEnable: "string",
secureAccessHosts: ["string"],
secureAccessWeb: false,
tags: ["string"],
targetName: "string",
userTtl: "string",
});
type: akeyless:ProducerMysql
properties:
dbServerCertificates: string
dbServerName: string
mysqlDbname: string
mysqlHost: string
mysqlPassword: string
mysqlPort: string
mysqlScreationStatements: string
mysqlUsername: string
name: string
producerEncryptionKeyName: string
producerMysqlId: string
secureAccessBastionIssuer: string
secureAccessDbName: string
secureAccessEnable: string
secureAccessHosts:
- string
secureAccessWeb: false
tags:
- string
targetName: string
userTtl: string
ProducerMysql 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 ProducerMysql resource accepts the following input properties:
- Db
Server stringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- Db
Server stringName - 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
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL host name
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Screation stringStatements - MySQL Creation Statements
- Mysql
Username string - MySQL user
- Name string
- Producer name
- Producer
Encryption stringKey Name - Encrypt producer with following key
- Producer
Mysql stringId - The ID of this resource.
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringDb Name - Enable Web Secure Remote Access
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access List<string>Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- User
Ttl string - User TTL
- Db
Server stringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- Db
Server stringName - 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
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL host name
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Screation stringStatements - MySQL Creation Statements
- Mysql
Username string - MySQL user
- Name string
- Producer name
- Producer
Encryption stringKey Name - Encrypt producer with following key
- Producer
Mysql stringId - The ID of this resource.
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringDb Name - Enable Web Secure Remote Access
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access []stringHosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- User
Ttl string - User TTL
- db
Server StringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db
Server StringName - 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
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL host name
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Screation StringStatements - MySQL Creation Statements
- mysql
Username String - MySQL user
- name String
- Producer name
- producer
Encryption StringKey Name - Encrypt producer with following key
- producer
Mysql StringId - The ID of this resource.
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringDb Name - Enable Web Secure Remote Access
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user
Ttl String - User TTL
- db
Server stringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db
Server stringName - 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
- mysql
Dbname string - MySQL DB name
- mysql
Host string - MySQL host name
- mysql
Password string - MySQL password
- mysql
Port string - MySQL port
- mysql
Screation stringStatements - MySQL Creation Statements
- mysql
Username string - MySQL user
- name string
- Producer name
- producer
Encryption stringKey Name - Encrypt producer with following key
- producer
Mysql stringId - The ID of this resource.
- secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access stringDb Name - Enable Web Secure Remote Access
- secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access string[]Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user
Ttl string - User TTL
- db_
server_ strcertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db_
server_ strname - 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
- mysql_
dbname str - MySQL DB name
- mysql_
host str - MySQL host name
- mysql_
password str - MySQL password
- mysql_
port str - MySQL port
- mysql_
screation_ strstatements - MySQL Creation Statements
- mysql_
username str - MySQL user
- name str
- Producer name
- producer_
encryption_ strkey_ name - Encrypt producer with following key
- producer_
mysql_ strid - The ID of this resource.
- secure_
access_ strbastion_ issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure_
access_ strdb_ name - Enable Web Secure Remote Access
- secure_
access_ strenable - Enable/Disable secure remote access, [true/false]
- secure_
access_ Sequence[str]hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user_
ttl str - User TTL
- db
Server StringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db
Server StringName - 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
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL host name
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Screation StringStatements - MySQL Creation Statements
- mysql
Username String - MySQL user
- name String
- Producer name
- producer
Encryption StringKey Name - Encrypt producer with following key
- producer
Mysql StringId - The ID of this resource.
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringDb Name - Enable Web Secure Remote Access
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user
Ttl String - User TTL
Outputs
All input properties are implicitly available as output properties. Additionally, the ProducerMysql 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 ProducerMysql Resource
Get an existing ProducerMysql 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?: ProducerMysqlState, opts?: CustomResourceOptions): ProducerMysql
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
db_server_certificates: Optional[str] = None,
db_server_name: Optional[str] = None,
mysql_dbname: Optional[str] = None,
mysql_host: Optional[str] = None,
mysql_password: Optional[str] = None,
mysql_port: Optional[str] = None,
mysql_screation_statements: Optional[str] = None,
mysql_username: Optional[str] = None,
name: Optional[str] = None,
producer_encryption_key_name: Optional[str] = None,
producer_mysql_id: 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,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None) -> ProducerMysql
func GetProducerMysql(ctx *Context, name string, id IDInput, state *ProducerMysqlState, opts ...ResourceOption) (*ProducerMysql, error)
public static ProducerMysql Get(string name, Input<string> id, ProducerMysqlState? state, CustomResourceOptions? opts = null)
public static ProducerMysql get(String name, Output<String> id, ProducerMysqlState state, CustomResourceOptions options)
resources: _: type: akeyless:ProducerMysql 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.
- Db
Server stringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- Db
Server stringName - 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
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL host name
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Screation stringStatements - MySQL Creation Statements
- Mysql
Username string - MySQL user
- Name string
- Producer name
- Producer
Encryption stringKey Name - Encrypt producer with following key
- Producer
Mysql stringId - The ID of this resource.
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringDb Name - Enable Web Secure Remote Access
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access List<string>Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- User
Ttl string - User TTL
- Db
Server stringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- Db
Server stringName - 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
- Mysql
Dbname string - MySQL DB name
- Mysql
Host string - MySQL host name
- Mysql
Password string - MySQL password
- Mysql
Port string - MySQL port
- Mysql
Screation stringStatements - MySQL Creation Statements
- Mysql
Username string - MySQL user
- Name string
- Producer name
- Producer
Encryption stringKey Name - Encrypt producer with following key
- Producer
Mysql stringId - The ID of this resource.
- Secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- Secure
Access stringDb Name - Enable Web Secure Remote Access
- Secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- Secure
Access []stringHosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- User
Ttl string - User TTL
- db
Server StringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db
Server StringName - 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
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL host name
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Screation StringStatements - MySQL Creation Statements
- mysql
Username String - MySQL user
- name String
- Producer name
- producer
Encryption StringKey Name - Encrypt producer with following key
- producer
Mysql StringId - The ID of this resource.
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringDb Name - Enable Web Secure Remote Access
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user
Ttl String - User TTL
- db
Server stringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db
Server stringName - 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
- mysql
Dbname string - MySQL DB name
- mysql
Host string - MySQL host name
- mysql
Password string - MySQL password
- mysql
Port string - MySQL port
- mysql
Screation stringStatements - MySQL Creation Statements
- mysql
Username string - MySQL user
- name string
- Producer name
- producer
Encryption stringKey Name - Encrypt producer with following key
- producer
Mysql stringId - The ID of this resource.
- secure
Access stringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access stringDb Name - Enable Web Secure Remote Access
- secure
Access stringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access string[]Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user
Ttl string - User TTL
- db_
server_ strcertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db_
server_ strname - 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
- mysql_
dbname str - MySQL DB name
- mysql_
host str - MySQL host name
- mysql_
password str - MySQL password
- mysql_
port str - MySQL port
- mysql_
screation_ strstatements - MySQL Creation Statements
- mysql_
username str - MySQL user
- name str
- Producer name
- producer_
encryption_ strkey_ name - Encrypt producer with following key
- producer_
mysql_ strid - The ID of this resource.
- secure_
access_ strbastion_ issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure_
access_ strdb_ name - Enable Web Secure Remote Access
- secure_
access_ strenable - Enable/Disable secure remote access, [true/false]
- secure_
access_ Sequence[str]hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user_
ttl str - User TTL
- db
Server StringCertificates - the set of root certificate authorities in base64 encoding that clients use when verifying server certificates
- db
Server StringName - 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
- mysql
Dbname String - MySQL DB name
- mysql
Host String - MySQL host name
- mysql
Password String - MySQL password
- mysql
Port String - MySQL port
- mysql
Screation StringStatements - MySQL Creation Statements
- mysql
Username String - MySQL user
- name String
- Producer name
- producer
Encryption StringKey Name - Encrypt producer with following key
- producer
Mysql StringId - The ID of this resource.
- secure
Access StringBastion Issuer - Path to the SSH Certificate Issuer for your Akeyless Bastion
- secure
Access StringDb Name - Enable Web Secure Remote Access
- secure
Access StringEnable - Enable/Disable secure remote access, [true/false]
- secure
Access List<String>Hosts - Target DB servers for connections., For multiple values repeat this flag.
- 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 producer creation
- user
Ttl String - User TTL
Package Details
- Repository
- akeyless akeyless-community/terraform-provider-akeyless
- License
- Notes
- This Pulumi package is based on the
akeyless
Terraform Provider.