published on Monday, Apr 27, 2026 by akeyless-community
published on Monday, Apr 27, 2026 by akeyless-community
Redshift dynamic secret resource
Create DynamicSecretRedshift Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DynamicSecretRedshift(name: string, args?: DynamicSecretRedshiftArgs, opts?: CustomResourceOptions);@overload
def DynamicSecretRedshift(resource_name: str,
args: Optional[DynamicSecretRedshiftArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def DynamicSecretRedshift(resource_name: str,
opts: Optional[ResourceOptions] = None,
creation_statements: Optional[str] = None,
custom_username_template: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_redshift_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
password_length: Optional[str] = None,
redshift_db_name: Optional[str] = None,
redshift_host: Optional[str] = None,
redshift_password: Optional[str] = None,
redshift_port: Optional[str] = None,
redshift_username: 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,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None)func NewDynamicSecretRedshift(ctx *Context, name string, args *DynamicSecretRedshiftArgs, opts ...ResourceOption) (*DynamicSecretRedshift, error)public DynamicSecretRedshift(string name, DynamicSecretRedshiftArgs? args = null, CustomResourceOptions? opts = null)
public DynamicSecretRedshift(String name, DynamicSecretRedshiftArgs args)
public DynamicSecretRedshift(String name, DynamicSecretRedshiftArgs args, CustomResourceOptions options)
type: akeyless:DynamicSecretRedshift
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "akeyless_dynamicsecretredshift" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args DynamicSecretRedshiftArgs
- 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 DynamicSecretRedshiftArgs
- 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 DynamicSecretRedshiftArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DynamicSecretRedshiftArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DynamicSecretRedshiftArgs
- 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 dynamicSecretRedshiftResource = new Akeyless.DynamicSecretRedshift("dynamicSecretRedshiftResource", new()
{
CreationStatements = "string",
CustomUsernameTemplate = "string",
DeleteProtection = "string",
Description = "string",
DynamicSecretRedshiftId = "string",
EncryptionKeyName = "string",
ItemCustomFields =
{
{ "string", "string" },
},
Name = "string",
PasswordLength = "string",
RedshiftDbName = "string",
RedshiftHost = "string",
RedshiftPassword = "string",
RedshiftPort = "string",
RedshiftUsername = "string",
SecureAccessDbName = "string",
SecureAccessEnable = "string",
SecureAccessHosts = new[]
{
"string",
},
SecureAccessWeb = false,
Ssl = false,
Tags = new[]
{
"string",
},
TargetName = "string",
UserTtl = "string",
});
example, err := akeyless.NewDynamicSecretRedshift(ctx, "dynamicSecretRedshiftResource", &akeyless.DynamicSecretRedshiftArgs{
CreationStatements: pulumi.String("string"),
CustomUsernameTemplate: pulumi.String("string"),
DeleteProtection: pulumi.String("string"),
Description: pulumi.String("string"),
DynamicSecretRedshiftId: pulumi.String("string"),
EncryptionKeyName: pulumi.String("string"),
ItemCustomFields: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
PasswordLength: pulumi.String("string"),
RedshiftDbName: pulumi.String("string"),
RedshiftHost: pulumi.String("string"),
RedshiftPassword: pulumi.String("string"),
RedshiftPort: pulumi.String("string"),
RedshiftUsername: 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),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TargetName: pulumi.String("string"),
UserTtl: pulumi.String("string"),
})
resource "akeyless_dynamicsecretredshift" "dynamicSecretRedshiftResource" {
creation_statements = "string"
custom_username_template = "string"
delete_protection = "string"
description = "string"
dynamic_secret_redshift_id = "string"
encryption_key_name = "string"
item_custom_fields = {
"string" = "string"
}
name = "string"
password_length = "string"
redshift_db_name = "string"
redshift_host = "string"
redshift_password = "string"
redshift_port = "string"
redshift_username = "string"
secure_access_db_name = "string"
secure_access_enable = "string"
secure_access_hosts = ["string"]
secure_access_web = false
ssl = false
tags = ["string"]
target_name = "string"
user_ttl = "string"
}
var dynamicSecretRedshiftResource = new DynamicSecretRedshift("dynamicSecretRedshiftResource", DynamicSecretRedshiftArgs.builder()
.creationStatements("string")
.customUsernameTemplate("string")
.deleteProtection("string")
.description("string")
.dynamicSecretRedshiftId("string")
.encryptionKeyName("string")
.itemCustomFields(Map.of("string", "string"))
.name("string")
.passwordLength("string")
.redshiftDbName("string")
.redshiftHost("string")
.redshiftPassword("string")
.redshiftPort("string")
.redshiftUsername("string")
.secureAccessDbName("string")
.secureAccessEnable("string")
.secureAccessHosts("string")
.secureAccessWeb(false)
.ssl(false)
.tags("string")
.targetName("string")
.userTtl("string")
.build());
dynamic_secret_redshift_resource = akeyless.DynamicSecretRedshift("dynamicSecretRedshiftResource",
creation_statements="string",
custom_username_template="string",
delete_protection="string",
description="string",
dynamic_secret_redshift_id="string",
encryption_key_name="string",
item_custom_fields={
"string": "string",
},
name="string",
password_length="string",
redshift_db_name="string",
redshift_host="string",
redshift_password="string",
redshift_port="string",
redshift_username="string",
secure_access_db_name="string",
secure_access_enable="string",
secure_access_hosts=["string"],
secure_access_web=False,
ssl=False,
tags=["string"],
target_name="string",
user_ttl="string")
const dynamicSecretRedshiftResource = new akeyless.DynamicSecretRedshift("dynamicSecretRedshiftResource", {
creationStatements: "string",
customUsernameTemplate: "string",
deleteProtection: "string",
description: "string",
dynamicSecretRedshiftId: "string",
encryptionKeyName: "string",
itemCustomFields: {
string: "string",
},
name: "string",
passwordLength: "string",
redshiftDbName: "string",
redshiftHost: "string",
redshiftPassword: "string",
redshiftPort: "string",
redshiftUsername: "string",
secureAccessDbName: "string",
secureAccessEnable: "string",
secureAccessHosts: ["string"],
secureAccessWeb: false,
ssl: false,
tags: ["string"],
targetName: "string",
userTtl: "string",
});
type: akeyless:DynamicSecretRedshift
properties:
creationStatements: string
customUsernameTemplate: string
deleteProtection: string
description: string
dynamicSecretRedshiftId: string
encryptionKeyName: string
itemCustomFields:
string: string
name: string
passwordLength: string
redshiftDbName: string
redshiftHost: string
redshiftPassword: string
redshiftPort: string
redshiftUsername: string
secureAccessDbName: string
secureAccessEnable: string
secureAccessHosts:
- string
secureAccessWeb: false
ssl: false
tags:
- string
targetName: string
userTtl: string
DynamicSecretRedshift 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 DynamicSecretRedshift resource accepts the following input properties:
- Creation
Statements string - Redshift Creation statements
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringRedshift 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
- Name string
- Dynamic Secret name
- Password
Length string - The length of the password to be generated
- Redshift
Db stringName - Redshift DB Name
- Redshift
Host string - Redshift Host
- Redshift
Password string - Redshift Password
- Redshift
Port string - Redshift Port
- Redshift
Username string - Redshift Username
- Secure
Access stringDb Name - The DB Name
- 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]
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- Creation
Statements string - Redshift Creation statements
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringRedshift 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
- Name string
- Dynamic Secret name
- Password
Length string - The length of the password to be generated
- Redshift
Db stringName - Redshift DB Name
- Redshift
Host string - Redshift Host
- Redshift
Password string - Redshift Password
- Redshift
Port string - Redshift Port
- Redshift
Username string - Redshift Username
- Secure
Access stringDb Name - The DB Name
- 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]
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- creation_
statements string - Redshift Creation statements
- custom_
username_ stringtemplate - Customize how temporary usernames are generated using go template
- delete_
protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic_
secret_ stringredshift_ 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
- name string
- Dynamic Secret name
- password_
length string - The length of the password to be generated
- redshift_
db_ stringname - Redshift DB Name
- redshift_
host string - Redshift Host
- redshift_
password string - Redshift Password
- redshift_
port string - Redshift Port
- redshift_
username string - Redshift Username
- secure_
access_ stringdb_ name - The DB Name
- 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]
- list(string)
- Add tags attached to this object
- target_
name string - Target name
- user_
ttl string - User TTL
- creation
Statements String - Redshift Creation statements
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringRedshift 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
- name String
- Dynamic Secret name
- password
Length String - The length of the password to be generated
- redshift
Db StringName - Redshift DB Name
- redshift
Host String - Redshift Host
- redshift
Password String - Redshift Password
- redshift
Port String - Redshift Port
- redshift
Username String - Redshift Username
- secure
Access StringDb Name - The DB Name
- 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]
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl String - User TTL
- creation
Statements string - Redshift Creation statements
- custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic
Secret stringRedshift 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
- name string
- Dynamic Secret name
- password
Length string - The length of the password to be generated
- redshift
Db stringName - Redshift DB Name
- redshift
Host string - Redshift Host
- redshift
Password string - Redshift Password
- redshift
Port string - Redshift Port
- redshift
Username string - Redshift Username
- secure
Access stringDb Name - The DB Name
- 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]
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Ttl string - User TTL
- creation_
statements str - Redshift Creation statements
- custom_
username_ strtemplate - Customize how temporary usernames are generated using go template
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- dynamic_
secret_ strredshift_ 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
- name str
- Dynamic Secret name
- password_
length str - The length of the password to be generated
- redshift_
db_ strname - Redshift DB Name
- redshift_
host str - Redshift Host
- redshift_
password str - Redshift Password
- redshift_
port str - Redshift Port
- redshift_
username str - Redshift Username
- secure_
access_ strdb_ name - The DB Name
- 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]
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
ttl str - User TTL
- creation
Statements String - Redshift Creation statements
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringRedshift 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
- name String
- Dynamic Secret name
- password
Length String - The length of the password to be generated
- redshift
Db StringName - Redshift DB Name
- redshift
Host String - Redshift Host
- redshift
Password String - Redshift Password
- redshift
Port String - Redshift Port
- redshift
Username String - Redshift Username
- secure
Access StringDb Name - The DB Name
- 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]
- 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 DynamicSecretRedshift 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 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 DynamicSecretRedshift Resource
Get an existing DynamicSecretRedshift 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?: DynamicSecretRedshiftState, opts?: CustomResourceOptions): DynamicSecretRedshift@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
creation_statements: Optional[str] = None,
custom_username_template: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
dynamic_secret_redshift_id: Optional[str] = None,
encryption_key_name: Optional[str] = None,
item_custom_fields: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
password_length: Optional[str] = None,
redshift_db_name: Optional[str] = None,
redshift_host: Optional[str] = None,
redshift_password: Optional[str] = None,
redshift_port: Optional[str] = None,
redshift_username: 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,
tags: Optional[Sequence[str]] = None,
target_name: Optional[str] = None,
user_ttl: Optional[str] = None) -> DynamicSecretRedshiftfunc GetDynamicSecretRedshift(ctx *Context, name string, id IDInput, state *DynamicSecretRedshiftState, opts ...ResourceOption) (*DynamicSecretRedshift, error)public static DynamicSecretRedshift Get(string name, Input<string> id, DynamicSecretRedshiftState? state, CustomResourceOptions? opts = null)public static DynamicSecretRedshift get(String name, Output<String> id, DynamicSecretRedshiftState state, CustomResourceOptions options)resources: _: type: akeyless:DynamicSecretRedshift get: id: ${id}import {
to = akeyless_dynamicsecretredshift.example
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.
- Creation
Statements string - Redshift Creation statements
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringRedshift 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
- Name string
- Dynamic Secret name
- Password
Length string - The length of the password to be generated
- Redshift
Db stringName - Redshift DB Name
- Redshift
Host string - Redshift Host
- Redshift
Password string - Redshift Password
- Redshift
Port string - Redshift Port
- Redshift
Username string - Redshift Username
- Secure
Access stringDb Name - The DB Name
- 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]
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- Creation
Statements string - Redshift Creation statements
- Custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Dynamic
Secret stringRedshift 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
- Name string
- Dynamic Secret name
- Password
Length string - The length of the password to be generated
- Redshift
Db stringName - Redshift DB Name
- Redshift
Host string - Redshift Host
- Redshift
Password string - Redshift Password
- Redshift
Port string - Redshift Port
- Redshift
Username string - Redshift Username
- Secure
Access stringDb Name - The DB Name
- 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]
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - User TTL
- creation_
statements string - Redshift Creation statements
- custom_
username_ stringtemplate - Customize how temporary usernames are generated using go template
- delete_
protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic_
secret_ stringredshift_ 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
- name string
- Dynamic Secret name
- password_
length string - The length of the password to be generated
- redshift_
db_ stringname - Redshift DB Name
- redshift_
host string - Redshift Host
- redshift_
password string - Redshift Password
- redshift_
port string - Redshift Port
- redshift_
username string - Redshift Username
- secure_
access_ stringdb_ name - The DB Name
- 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]
- list(string)
- Add tags attached to this object
- target_
name string - Target name
- user_
ttl string - User TTL
- creation
Statements String - Redshift Creation statements
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringRedshift 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
- name String
- Dynamic Secret name
- password
Length String - The length of the password to be generated
- redshift
Db StringName - Redshift DB Name
- redshift
Host String - Redshift Host
- redshift
Password String - Redshift Password
- redshift
Port String - Redshift Port
- redshift
Username String - Redshift Username
- secure
Access StringDb Name - The DB Name
- 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]
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl String - User TTL
- creation
Statements string - Redshift Creation statements
- custom
Username stringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- dynamic
Secret stringRedshift 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
- name string
- Dynamic Secret name
- password
Length string - The length of the password to be generated
- redshift
Db stringName - Redshift DB Name
- redshift
Host string - Redshift Host
- redshift
Password string - Redshift Password
- redshift
Port string - Redshift Port
- redshift
Username string - Redshift Username
- secure
Access stringDb Name - The DB Name
- 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]
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Ttl string - User TTL
- creation_
statements str - Redshift Creation statements
- custom_
username_ strtemplate - Customize how temporary usernames are generated using go template
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- dynamic_
secret_ strredshift_ 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
- name str
- Dynamic Secret name
- password_
length str - The length of the password to be generated
- redshift_
db_ strname - Redshift DB Name
- redshift_
host str - Redshift Host
- redshift_
password str - Redshift Password
- redshift_
port str - Redshift Port
- redshift_
username str - Redshift Username
- secure_
access_ strdb_ name - The DB Name
- 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]
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
ttl str - User TTL
- creation
Statements String - Redshift Creation statements
- custom
Username StringTemplate - Customize how temporary usernames are generated using go template
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- dynamic
Secret StringRedshift 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
- name String
- Dynamic Secret name
- password
Length String - The length of the password to be generated
- redshift
Db StringName - Redshift DB Name
- redshift
Host String - Redshift Host
- redshift
Password String - Redshift Password
- redshift
Port String - Redshift Port
- redshift
Username String - Redshift Username
- secure
Access StringDb Name - The DB Name
- 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]
- 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
