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

akeyless.DynamicSecretOracle

Explore with Pulumi AI

Oracle DB dynamic secret resource

Create DynamicSecretOracle Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DynamicSecretOracle(name: string, args?: DynamicSecretOracleArgs, opts?: CustomResourceOptions);
@overload
def DynamicSecretOracle(resource_name: str,
                        args: Optional[DynamicSecretOracleArgs] = None,
                        opts: Optional[ResourceOptions] = None)

@overload
def DynamicSecretOracle(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        db_server_certificates: Optional[str] = None,
                        db_server_name: Optional[str] = None,
                        dynamic_secret_oracle_id: Optional[str] = None,
                        encryption_key_name: Optional[str] = None,
                        name: Optional[str] = None,
                        oracle_creation_statements: Optional[str] = None,
                        oracle_host: Optional[str] = None,
                        oracle_password: Optional[str] = None,
                        oracle_port: Optional[str] = None,
                        oracle_revocation_statements: Optional[str] = None,
                        oracle_service_name: Optional[str] = None,
                        oracle_username: Optional[str] = None,
                        password_length: Optional[str] = None,
                        tags: Optional[Sequence[str]] = None,
                        target_name: Optional[str] = None,
                        user_ttl: Optional[str] = None)
func NewDynamicSecretOracle(ctx *Context, name string, args *DynamicSecretOracleArgs, opts ...ResourceOption) (*DynamicSecretOracle, error)
public DynamicSecretOracle(string name, DynamicSecretOracleArgs? args = null, CustomResourceOptions? opts = null)
public DynamicSecretOracle(String name, DynamicSecretOracleArgs args)
public DynamicSecretOracle(String name, DynamicSecretOracleArgs args, CustomResourceOptions options)
type: akeyless:DynamicSecretOracle
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 DynamicSecretOracleArgs
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 DynamicSecretOracleArgs
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 DynamicSecretOracleArgs
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 DynamicSecretOracleArgs
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. DynamicSecretOracleArgs
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 dynamicSecretOracleResource = new Akeyless.DynamicSecretOracle("dynamicSecretOracleResource", new()
{
    DbServerCertificates = "string",
    DbServerName = "string",
    DynamicSecretOracleId = "string",
    EncryptionKeyName = "string",
    Name = "string",
    OracleCreationStatements = "string",
    OracleHost = "string",
    OraclePassword = "string",
    OraclePort = "string",
    OracleRevocationStatements = "string",
    OracleServiceName = "string",
    OracleUsername = "string",
    PasswordLength = "string",
    Tags = new[]
    {
        "string",
    },
    TargetName = "string",
    UserTtl = "string",
});
Copy
example, err := akeyless.NewDynamicSecretOracle(ctx, "dynamicSecretOracleResource", &akeyless.DynamicSecretOracleArgs{
DbServerCertificates: pulumi.String("string"),
DbServerName: pulumi.String("string"),
DynamicSecretOracleId: pulumi.String("string"),
EncryptionKeyName: pulumi.String("string"),
Name: pulumi.String("string"),
OracleCreationStatements: pulumi.String("string"),
OracleHost: pulumi.String("string"),
OraclePassword: pulumi.String("string"),
OraclePort: pulumi.String("string"),
OracleRevocationStatements: pulumi.String("string"),
OracleServiceName: pulumi.String("string"),
OracleUsername: pulumi.String("string"),
PasswordLength: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TargetName: pulumi.String("string"),
UserTtl: pulumi.String("string"),
})
Copy
var dynamicSecretOracleResource = new DynamicSecretOracle("dynamicSecretOracleResource", DynamicSecretOracleArgs.builder()
    .dbServerCertificates("string")
    .dbServerName("string")
    .dynamicSecretOracleId("string")
    .encryptionKeyName("string")
    .name("string")
    .oracleCreationStatements("string")
    .oracleHost("string")
    .oraclePassword("string")
    .oraclePort("string")
    .oracleRevocationStatements("string")
    .oracleServiceName("string")
    .oracleUsername("string")
    .passwordLength("string")
    .tags("string")
    .targetName("string")
    .userTtl("string")
    .build());
Copy
dynamic_secret_oracle_resource = akeyless.DynamicSecretOracle("dynamicSecretOracleResource",
    db_server_certificates="string",
    db_server_name="string",
    dynamic_secret_oracle_id="string",
    encryption_key_name="string",
    name="string",
    oracle_creation_statements="string",
    oracle_host="string",
    oracle_password="string",
    oracle_port="string",
    oracle_revocation_statements="string",
    oracle_service_name="string",
    oracle_username="string",
    password_length="string",
    tags=["string"],
    target_name="string",
    user_ttl="string")
Copy
const dynamicSecretOracleResource = new akeyless.DynamicSecretOracle("dynamicSecretOracleResource", {
    dbServerCertificates: "string",
    dbServerName: "string",
    dynamicSecretOracleId: "string",
    encryptionKeyName: "string",
    name: "string",
    oracleCreationStatements: "string",
    oracleHost: "string",
    oraclePassword: "string",
    oraclePort: "string",
    oracleRevocationStatements: "string",
    oracleServiceName: "string",
    oracleUsername: "string",
    passwordLength: "string",
    tags: ["string"],
    targetName: "string",
    userTtl: "string",
});
Copy
type: akeyless:DynamicSecretOracle
properties:
    dbServerCertificates: string
    dbServerName: string
    dynamicSecretOracleId: string
    encryptionKeyName: string
    name: string
    oracleCreationStatements: string
    oracleHost: string
    oraclePassword: string
    oraclePort: string
    oracleRevocationStatements: string
    oracleServiceName: string
    oracleUsername: string
    passwordLength: string
    tags:
        - string
    targetName: string
    userTtl: string
Copy

DynamicSecretOracle 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 DynamicSecretOracle 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
DynamicSecretOracleId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
Name string
Dynamic secret name
OracleCreationStatements string
Oracle Creation Statements
OracleHost string
Oracle host name
OraclePassword string
Oracle password
OraclePort string
Oracle port
OracleRevocationStatements string
Oracle Revocation Statements
OracleServiceName string
Oracle service name
OracleUsername string
Oracle user
PasswordLength string
The length of the password to be generated
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
DynamicSecretOracleId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
Name string
Dynamic secret name
OracleCreationStatements string
Oracle Creation Statements
OracleHost string
Oracle host name
OraclePassword string
Oracle password
OraclePort string
Oracle port
OracleRevocationStatements string
Oracle Revocation Statements
OracleServiceName string
Oracle service name
OracleUsername string
Oracle user
PasswordLength string
The length of the password to be generated
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
dynamicSecretOracleId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
name String
Dynamic secret name
oracleCreationStatements String
Oracle Creation Statements
oracleHost String
Oracle host name
oraclePassword String
Oracle password
oraclePort String
Oracle port
oracleRevocationStatements String
Oracle Revocation Statements
oracleServiceName String
Oracle service name
oracleUsername String
Oracle user
passwordLength String
The length of the password to be generated
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
dynamicSecretOracleId string
The ID of this resource.
encryptionKeyName string
Encrypt dynamic secret details with following key
name string
Dynamic secret name
oracleCreationStatements string
Oracle Creation Statements
oracleHost string
Oracle host name
oraclePassword string
Oracle password
oraclePort string
Oracle port
oracleRevocationStatements string
Oracle Revocation Statements
oracleServiceName string
Oracle service name
oracleUsername string
Oracle user
passwordLength string
The length of the password to be generated
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_oracle_id str
The ID of this resource.
encryption_key_name str
Encrypt dynamic secret details with following key
name str
Dynamic secret name
oracle_creation_statements str
Oracle Creation Statements
oracle_host str
Oracle host name
oracle_password str
Oracle password
oracle_port str
Oracle port
oracle_revocation_statements str
Oracle Revocation Statements
oracle_service_name str
Oracle service name
oracle_username str
Oracle user
password_length str
The length of the password to be generated
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
dynamicSecretOracleId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
name String
Dynamic secret name
oracleCreationStatements String
Oracle Creation Statements
oracleHost String
Oracle host name
oraclePassword String
Oracle password
oraclePort String
Oracle port
oracleRevocationStatements String
Oracle Revocation Statements
oracleServiceName String
Oracle service name
oracleUsername String
Oracle user
passwordLength String
The length of the password to be generated
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 DynamicSecretOracle 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 DynamicSecretOracle Resource

Get an existing DynamicSecretOracle 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?: DynamicSecretOracleState, opts?: CustomResourceOptions): DynamicSecretOracle
@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_oracle_id: Optional[str] = None,
        encryption_key_name: Optional[str] = None,
        name: Optional[str] = None,
        oracle_creation_statements: Optional[str] = None,
        oracle_host: Optional[str] = None,
        oracle_password: Optional[str] = None,
        oracle_port: Optional[str] = None,
        oracle_revocation_statements: Optional[str] = None,
        oracle_service_name: Optional[str] = None,
        oracle_username: Optional[str] = None,
        password_length: Optional[str] = None,
        tags: Optional[Sequence[str]] = None,
        target_name: Optional[str] = None,
        user_ttl: Optional[str] = None) -> DynamicSecretOracle
func GetDynamicSecretOracle(ctx *Context, name string, id IDInput, state *DynamicSecretOracleState, opts ...ResourceOption) (*DynamicSecretOracle, error)
public static DynamicSecretOracle Get(string name, Input<string> id, DynamicSecretOracleState? state, CustomResourceOptions? opts = null)
public static DynamicSecretOracle get(String name, Output<String> id, DynamicSecretOracleState state, CustomResourceOptions options)
resources:  _:    type: akeyless:DynamicSecretOracle    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
DynamicSecretOracleId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
Name string
Dynamic secret name
OracleCreationStatements string
Oracle Creation Statements
OracleHost string
Oracle host name
OraclePassword string
Oracle password
OraclePort string
Oracle port
OracleRevocationStatements string
Oracle Revocation Statements
OracleServiceName string
Oracle service name
OracleUsername string
Oracle user
PasswordLength string
The length of the password to be generated
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
DynamicSecretOracleId string
The ID of this resource.
EncryptionKeyName string
Encrypt dynamic secret details with following key
Name string
Dynamic secret name
OracleCreationStatements string
Oracle Creation Statements
OracleHost string
Oracle host name
OraclePassword string
Oracle password
OraclePort string
Oracle port
OracleRevocationStatements string
Oracle Revocation Statements
OracleServiceName string
Oracle service name
OracleUsername string
Oracle user
PasswordLength string
The length of the password to be generated
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
dynamicSecretOracleId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
name String
Dynamic secret name
oracleCreationStatements String
Oracle Creation Statements
oracleHost String
Oracle host name
oraclePassword String
Oracle password
oraclePort String
Oracle port
oracleRevocationStatements String
Oracle Revocation Statements
oracleServiceName String
Oracle service name
oracleUsername String
Oracle user
passwordLength String
The length of the password to be generated
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
dynamicSecretOracleId string
The ID of this resource.
encryptionKeyName string
Encrypt dynamic secret details with following key
name string
Dynamic secret name
oracleCreationStatements string
Oracle Creation Statements
oracleHost string
Oracle host name
oraclePassword string
Oracle password
oraclePort string
Oracle port
oracleRevocationStatements string
Oracle Revocation Statements
oracleServiceName string
Oracle service name
oracleUsername string
Oracle user
passwordLength string
The length of the password to be generated
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_oracle_id str
The ID of this resource.
encryption_key_name str
Encrypt dynamic secret details with following key
name str
Dynamic secret name
oracle_creation_statements str
Oracle Creation Statements
oracle_host str
Oracle host name
oracle_password str
Oracle password
oracle_port str
Oracle port
oracle_revocation_statements str
Oracle Revocation Statements
oracle_service_name str
Oracle service name
oracle_username str
Oracle user
password_length str
The length of the password to be generated
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
dynamicSecretOracleId String
The ID of this resource.
encryptionKeyName String
Encrypt dynamic secret details with following key
name String
Dynamic secret name
oracleCreationStatements String
Oracle Creation Statements
oracleHost String
Oracle host name
oraclePassword String
Oracle password
oraclePort String
Oracle port
oracleRevocationStatements String
Oracle Revocation Statements
oracleServiceName String
Oracle service name
oracleUsername String
Oracle user
passwordLength String
The length of the password to be generated
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.