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

akeyless.ProducerMongo

Explore with Pulumi AI

Mongo DB Producer resource

Create ProducerMongo Resource

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

Constructor syntax

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

@overload
def ProducerMongo(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  mongodb_atlas_api_private_key: Optional[str] = None,
                  mongodb_atlas_api_public_key: Optional[str] = None,
                  mongodb_atlas_project_id: Optional[str] = None,
                  mongodb_default_auth_db: Optional[str] = None,
                  mongodb_host_port: Optional[str] = None,
                  mongodb_name: Optional[str] = None,
                  mongodb_password: Optional[str] = None,
                  mongodb_roles: Optional[str] = None,
                  mongodb_server_uri: Optional[str] = None,
                  mongodb_uri_options: Optional[str] = None,
                  mongodb_username: Optional[str] = None,
                  name: Optional[str] = None,
                  producer_encryption_key_name: Optional[str] = None,
                  producer_mongo_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 NewProducerMongo(ctx *Context, name string, args *ProducerMongoArgs, opts ...ResourceOption) (*ProducerMongo, error)
public ProducerMongo(string name, ProducerMongoArgs? args = null, CustomResourceOptions? opts = null)
public ProducerMongo(String name, ProducerMongoArgs args)
public ProducerMongo(String name, ProducerMongoArgs args, CustomResourceOptions options)
type: akeyless:ProducerMongo
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 ProducerMongoArgs
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 ProducerMongoArgs
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 ProducerMongoArgs
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 ProducerMongoArgs
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. ProducerMongoArgs
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 producerMongoResource = new Akeyless.ProducerMongo("producerMongoResource", new()
{
    MongodbAtlasApiPrivateKey = "string",
    MongodbAtlasApiPublicKey = "string",
    MongodbAtlasProjectId = "string",
    MongodbDefaultAuthDb = "string",
    MongodbHostPort = "string",
    MongodbName = "string",
    MongodbPassword = "string",
    MongodbRoles = "string",
    MongodbServerUri = "string",
    MongodbUriOptions = "string",
    MongodbUsername = "string",
    Name = "string",
    ProducerEncryptionKeyName = "string",
    ProducerMongoId = "string",
    SecureAccessBastionIssuer = "string",
    SecureAccessDbName = "string",
    SecureAccessEnable = "string",
    SecureAccessHosts = new[]
    {
        "string",
    },
    SecureAccessWeb = false,
    Tags = new[]
    {
        "string",
    },
    TargetName = "string",
    UserTtl = "string",
});
Copy
example, err := akeyless.NewProducerMongo(ctx, "producerMongoResource", &akeyless.ProducerMongoArgs{
MongodbAtlasApiPrivateKey: pulumi.String("string"),
MongodbAtlasApiPublicKey: pulumi.String("string"),
MongodbAtlasProjectId: pulumi.String("string"),
MongodbDefaultAuthDb: pulumi.String("string"),
MongodbHostPort: pulumi.String("string"),
MongodbName: pulumi.String("string"),
MongodbPassword: pulumi.String("string"),
MongodbRoles: pulumi.String("string"),
MongodbServerUri: pulumi.String("string"),
MongodbUriOptions: pulumi.String("string"),
MongodbUsername: pulumi.String("string"),
Name: pulumi.String("string"),
ProducerEncryptionKeyName: pulumi.String("string"),
ProducerMongoId: 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"),
})
Copy
var producerMongoResource = new ProducerMongo("producerMongoResource", ProducerMongoArgs.builder()
    .mongodbAtlasApiPrivateKey("string")
    .mongodbAtlasApiPublicKey("string")
    .mongodbAtlasProjectId("string")
    .mongodbDefaultAuthDb("string")
    .mongodbHostPort("string")
    .mongodbName("string")
    .mongodbPassword("string")
    .mongodbRoles("string")
    .mongodbServerUri("string")
    .mongodbUriOptions("string")
    .mongodbUsername("string")
    .name("string")
    .producerEncryptionKeyName("string")
    .producerMongoId("string")
    .secureAccessBastionIssuer("string")
    .secureAccessDbName("string")
    .secureAccessEnable("string")
    .secureAccessHosts("string")
    .secureAccessWeb(false)
    .tags("string")
    .targetName("string")
    .userTtl("string")
    .build());
Copy
producer_mongo_resource = akeyless.ProducerMongo("producerMongoResource",
    mongodb_atlas_api_private_key="string",
    mongodb_atlas_api_public_key="string",
    mongodb_atlas_project_id="string",
    mongodb_default_auth_db="string",
    mongodb_host_port="string",
    mongodb_name="string",
    mongodb_password="string",
    mongodb_roles="string",
    mongodb_server_uri="string",
    mongodb_uri_options="string",
    mongodb_username="string",
    name="string",
    producer_encryption_key_name="string",
    producer_mongo_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")
Copy
const producerMongoResource = new akeyless.ProducerMongo("producerMongoResource", {
    mongodbAtlasApiPrivateKey: "string",
    mongodbAtlasApiPublicKey: "string",
    mongodbAtlasProjectId: "string",
    mongodbDefaultAuthDb: "string",
    mongodbHostPort: "string",
    mongodbName: "string",
    mongodbPassword: "string",
    mongodbRoles: "string",
    mongodbServerUri: "string",
    mongodbUriOptions: "string",
    mongodbUsername: "string",
    name: "string",
    producerEncryptionKeyName: "string",
    producerMongoId: "string",
    secureAccessBastionIssuer: "string",
    secureAccessDbName: "string",
    secureAccessEnable: "string",
    secureAccessHosts: ["string"],
    secureAccessWeb: false,
    tags: ["string"],
    targetName: "string",
    userTtl: "string",
});
Copy
type: akeyless:ProducerMongo
properties:
    mongodbAtlasApiPrivateKey: string
    mongodbAtlasApiPublicKey: string
    mongodbAtlasProjectId: string
    mongodbDefaultAuthDb: string
    mongodbHostPort: string
    mongodbName: string
    mongodbPassword: string
    mongodbRoles: string
    mongodbServerUri: string
    mongodbUriOptions: string
    mongodbUsername: string
    name: string
    producerEncryptionKeyName: string
    producerMongoId: string
    secureAccessBastionIssuer: string
    secureAccessDbName: string
    secureAccessEnable: string
    secureAccessHosts:
        - string
    secureAccessWeb: false
    tags:
        - string
    targetName: string
    userTtl: string
Copy

ProducerMongo 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 ProducerMongo resource accepts the following input properties:

MongodbAtlasApiPrivateKey string
MongoDB Atlas private key
MongodbAtlasApiPublicKey string
MongoDB Atlas public key
MongodbAtlasProjectId string
MongoDB Atlas project ID
MongodbDefaultAuthDb string
MongoDB server default authentication database
MongodbHostPort string
host:port (e.g. my.mongo.db:27017)
MongodbName string
MongoDB name
MongodbPassword string
MongoDB server password
MongodbRoles string
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
MongodbServerUri string
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
MongodbUriOptions string
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
MongodbUsername string
MongoDB server username
Name string
Producer name
ProducerEncryptionKeyName string
Encrypt producer with following key
ProducerMongoId string
The ID of this resource.
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
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 producer creation
UserTtl string
User TTL (e.g. 60s, 60m, 60h)
MongodbAtlasApiPrivateKey string
MongoDB Atlas private key
MongodbAtlasApiPublicKey string
MongoDB Atlas public key
MongodbAtlasProjectId string
MongoDB Atlas project ID
MongodbDefaultAuthDb string
MongoDB server default authentication database
MongodbHostPort string
host:port (e.g. my.mongo.db:27017)
MongodbName string
MongoDB name
MongodbPassword string
MongoDB server password
MongodbRoles string
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
MongodbServerUri string
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
MongodbUriOptions string
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
MongodbUsername string
MongoDB server username
Name string
Producer name
ProducerEncryptionKeyName string
Encrypt producer with following key
ProducerMongoId string
The ID of this resource.
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
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 producer creation
UserTtl string
User TTL (e.g. 60s, 60m, 60h)
mongodbAtlasApiPrivateKey String
MongoDB Atlas private key
mongodbAtlasApiPublicKey String
MongoDB Atlas public key
mongodbAtlasProjectId String
MongoDB Atlas project ID
mongodbDefaultAuthDb String
MongoDB server default authentication database
mongodbHostPort String
host:port (e.g. my.mongo.db:27017)
mongodbName String
MongoDB name
mongodbPassword String
MongoDB server password
mongodbRoles String
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodbServerUri String
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodbUriOptions String
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodbUsername String
MongoDB server username
name String
Producer name
producerEncryptionKeyName String
Encrypt producer with following key
producerMongoId String
The ID of this resource.
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
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 producer creation
userTtl String
User TTL (e.g. 60s, 60m, 60h)
mongodbAtlasApiPrivateKey string
MongoDB Atlas private key
mongodbAtlasApiPublicKey string
MongoDB Atlas public key
mongodbAtlasProjectId string
MongoDB Atlas project ID
mongodbDefaultAuthDb string
MongoDB server default authentication database
mongodbHostPort string
host:port (e.g. my.mongo.db:27017)
mongodbName string
MongoDB name
mongodbPassword string
MongoDB server password
mongodbRoles string
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodbServerUri string
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodbUriOptions string
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodbUsername string
MongoDB server username
name string
Producer name
producerEncryptionKeyName string
Encrypt producer with following key
producerMongoId string
The ID of this resource.
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
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 producer creation
userTtl string
User TTL (e.g. 60s, 60m, 60h)
mongodb_atlas_api_private_key str
MongoDB Atlas private key
mongodb_atlas_api_public_key str
MongoDB Atlas public key
mongodb_atlas_project_id str
MongoDB Atlas project ID
mongodb_default_auth_db str
MongoDB server default authentication database
mongodb_host_port str
host:port (e.g. my.mongo.db:27017)
mongodb_name str
MongoDB name
mongodb_password str
MongoDB server password
mongodb_roles str
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodb_server_uri str
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodb_uri_options str
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodb_username str
MongoDB server username
name str
Producer name
producer_encryption_key_name str
Encrypt producer with following key
producer_mongo_id str
The ID of this resource.
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
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 producer creation
user_ttl str
User TTL (e.g. 60s, 60m, 60h)
mongodbAtlasApiPrivateKey String
MongoDB Atlas private key
mongodbAtlasApiPublicKey String
MongoDB Atlas public key
mongodbAtlasProjectId String
MongoDB Atlas project ID
mongodbDefaultAuthDb String
MongoDB server default authentication database
mongodbHostPort String
host:port (e.g. my.mongo.db:27017)
mongodbName String
MongoDB name
mongodbPassword String
MongoDB server password
mongodbRoles String
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodbServerUri String
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodbUriOptions String
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodbUsername String
MongoDB server username
name String
Producer name
producerEncryptionKeyName String
Encrypt producer with following key
producerMongoId String
The ID of this resource.
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
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 producer creation
userTtl String
User TTL (e.g. 60s, 60m, 60h)

Outputs

All input properties are implicitly available as output properties. Additionally, the ProducerMongo 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 ProducerMongo Resource

Get an existing ProducerMongo 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?: ProducerMongoState, opts?: CustomResourceOptions): ProducerMongo
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        mongodb_atlas_api_private_key: Optional[str] = None,
        mongodb_atlas_api_public_key: Optional[str] = None,
        mongodb_atlas_project_id: Optional[str] = None,
        mongodb_default_auth_db: Optional[str] = None,
        mongodb_host_port: Optional[str] = None,
        mongodb_name: Optional[str] = None,
        mongodb_password: Optional[str] = None,
        mongodb_roles: Optional[str] = None,
        mongodb_server_uri: Optional[str] = None,
        mongodb_uri_options: Optional[str] = None,
        mongodb_username: Optional[str] = None,
        name: Optional[str] = None,
        producer_encryption_key_name: Optional[str] = None,
        producer_mongo_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) -> ProducerMongo
func GetProducerMongo(ctx *Context, name string, id IDInput, state *ProducerMongoState, opts ...ResourceOption) (*ProducerMongo, error)
public static ProducerMongo Get(string name, Input<string> id, ProducerMongoState? state, CustomResourceOptions? opts = null)
public static ProducerMongo get(String name, Output<String> id, ProducerMongoState state, CustomResourceOptions options)
resources:  _:    type: akeyless:ProducerMongo    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:
MongodbAtlasApiPrivateKey string
MongoDB Atlas private key
MongodbAtlasApiPublicKey string
MongoDB Atlas public key
MongodbAtlasProjectId string
MongoDB Atlas project ID
MongodbDefaultAuthDb string
MongoDB server default authentication database
MongodbHostPort string
host:port (e.g. my.mongo.db:27017)
MongodbName string
MongoDB name
MongodbPassword string
MongoDB server password
MongodbRoles string
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
MongodbServerUri string
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
MongodbUriOptions string
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
MongodbUsername string
MongoDB server username
Name string
Producer name
ProducerEncryptionKeyName string
Encrypt producer with following key
ProducerMongoId string
The ID of this resource.
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
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 producer creation
UserTtl string
User TTL (e.g. 60s, 60m, 60h)
MongodbAtlasApiPrivateKey string
MongoDB Atlas private key
MongodbAtlasApiPublicKey string
MongoDB Atlas public key
MongodbAtlasProjectId string
MongoDB Atlas project ID
MongodbDefaultAuthDb string
MongoDB server default authentication database
MongodbHostPort string
host:port (e.g. my.mongo.db:27017)
MongodbName string
MongoDB name
MongodbPassword string
MongoDB server password
MongodbRoles string
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
MongodbServerUri string
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
MongodbUriOptions string
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
MongodbUsername string
MongoDB server username
Name string
Producer name
ProducerEncryptionKeyName string
Encrypt producer with following key
ProducerMongoId string
The ID of this resource.
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
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 producer creation
UserTtl string
User TTL (e.g. 60s, 60m, 60h)
mongodbAtlasApiPrivateKey String
MongoDB Atlas private key
mongodbAtlasApiPublicKey String
MongoDB Atlas public key
mongodbAtlasProjectId String
MongoDB Atlas project ID
mongodbDefaultAuthDb String
MongoDB server default authentication database
mongodbHostPort String
host:port (e.g. my.mongo.db:27017)
mongodbName String
MongoDB name
mongodbPassword String
MongoDB server password
mongodbRoles String
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodbServerUri String
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodbUriOptions String
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodbUsername String
MongoDB server username
name String
Producer name
producerEncryptionKeyName String
Encrypt producer with following key
producerMongoId String
The ID of this resource.
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
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 producer creation
userTtl String
User TTL (e.g. 60s, 60m, 60h)
mongodbAtlasApiPrivateKey string
MongoDB Atlas private key
mongodbAtlasApiPublicKey string
MongoDB Atlas public key
mongodbAtlasProjectId string
MongoDB Atlas project ID
mongodbDefaultAuthDb string
MongoDB server default authentication database
mongodbHostPort string
host:port (e.g. my.mongo.db:27017)
mongodbName string
MongoDB name
mongodbPassword string
MongoDB server password
mongodbRoles string
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodbServerUri string
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodbUriOptions string
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodbUsername string
MongoDB server username
name string
Producer name
producerEncryptionKeyName string
Encrypt producer with following key
producerMongoId string
The ID of this resource.
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
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 producer creation
userTtl string
User TTL (e.g. 60s, 60m, 60h)
mongodb_atlas_api_private_key str
MongoDB Atlas private key
mongodb_atlas_api_public_key str
MongoDB Atlas public key
mongodb_atlas_project_id str
MongoDB Atlas project ID
mongodb_default_auth_db str
MongoDB server default authentication database
mongodb_host_port str
host:port (e.g. my.mongo.db:27017)
mongodb_name str
MongoDB name
mongodb_password str
MongoDB server password
mongodb_roles str
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodb_server_uri str
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodb_uri_options str
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodb_username str
MongoDB server username
name str
Producer name
producer_encryption_key_name str
Encrypt producer with following key
producer_mongo_id str
The ID of this resource.
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
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 producer creation
user_ttl str
User TTL (e.g. 60s, 60m, 60h)
mongodbAtlasApiPrivateKey String
MongoDB Atlas private key
mongodbAtlasApiPublicKey String
MongoDB Atlas public key
mongodbAtlasProjectId String
MongoDB Atlas project ID
mongodbDefaultAuthDb String
MongoDB server default authentication database
mongodbHostPort String
host:port (e.g. my.mongo.db:27017)
mongodbName String
MongoDB name
mongodbPassword String
MongoDB server password
mongodbRoles String
MongoDB roles (e.g. MongoDB:[{role:readWrite, db: sales}], MongoDB Atlas:[{roleName : readWrite, databaseName: sales}])
mongodbServerUri String
MongoDB server URI (e.g. mongodb://user:password@my.mongo.db:27017/admin?replicaSet=mySet)
mongodbUriOptions String
MongoDB server URI options (e.g. replicaSet=mySet&authSource=authDB)
mongodbUsername String
MongoDB server username
name String
Producer name
producerEncryptionKeyName String
Encrypt producer with following key
producerMongoId String
The ID of this resource.
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
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 producer creation
userTtl String
User TTL (e.g. 60s, 60m, 60h)

Package Details

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