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

akeyless.DynamicSecretRdp

Explore with Pulumi AI

akeyless logo
akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community

    RDP dynamic secret resource

    Create DynamicSecretRdp Resource

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

    Constructor syntax

    new DynamicSecretRdp(name: string, args?: DynamicSecretRdpArgs, opts?: CustomResourceOptions);
    @overload
    def DynamicSecretRdp(resource_name: str,
                         args: Optional[DynamicSecretRdpArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def DynamicSecretRdp(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         dynamic_secret_rdp_id: Optional[str] = None,
                         encryption_key_name: Optional[str] = None,
                         fixed_user_only: Optional[str] = None,
                         name: Optional[str] = None,
                         password_length: Optional[str] = None,
                         rdp_admin_name: Optional[str] = None,
                         rdp_admin_pwd: Optional[str] = None,
                         rdp_host_name: Optional[str] = None,
                         rdp_host_port: Optional[str] = None,
                         rdp_user_groups: Optional[str] = None,
                         secure_access_allow_external_user: Optional[bool] = None,
                         secure_access_enable: Optional[str] = None,
                         secure_access_hosts: Optional[Sequence[str]] = None,
                         secure_access_rdp_domain: Optional[str] = None,
                         secure_access_rdp_user: Optional[str] = None,
                         secure_access_web: Optional[bool] = None,
                         tags: Optional[Sequence[str]] = None,
                         target_name: Optional[str] = None,
                         user_ttl: Optional[str] = None)
    func NewDynamicSecretRdp(ctx *Context, name string, args *DynamicSecretRdpArgs, opts ...ResourceOption) (*DynamicSecretRdp, error)
    public DynamicSecretRdp(string name, DynamicSecretRdpArgs? args = null, CustomResourceOptions? opts = null)
    public DynamicSecretRdp(String name, DynamicSecretRdpArgs args)
    public DynamicSecretRdp(String name, DynamicSecretRdpArgs args, CustomResourceOptions options)
    
    type: akeyless:DynamicSecretRdp
    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 DynamicSecretRdpArgs
    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 DynamicSecretRdpArgs
    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 DynamicSecretRdpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DynamicSecretRdpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DynamicSecretRdpArgs
    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 dynamicSecretRdpResource = new Akeyless.DynamicSecretRdp("dynamicSecretRdpResource", new()
    {
        DynamicSecretRdpId = "string",
        EncryptionKeyName = "string",
        FixedUserOnly = "string",
        Name = "string",
        PasswordLength = "string",
        RdpAdminName = "string",
        RdpAdminPwd = "string",
        RdpHostName = "string",
        RdpHostPort = "string",
        RdpUserGroups = "string",
        SecureAccessAllowExternalUser = false,
        SecureAccessEnable = "string",
        SecureAccessHosts = new[]
        {
            "string",
        },
        SecureAccessRdpDomain = "string",
        SecureAccessRdpUser = "string",
        SecureAccessWeb = false,
        Tags = new[]
        {
            "string",
        },
        TargetName = "string",
        UserTtl = "string",
    });
    
    example, err := akeyless.NewDynamicSecretRdp(ctx, "dynamicSecretRdpResource", &akeyless.DynamicSecretRdpArgs{
    	DynamicSecretRdpId:            pulumi.String("string"),
    	EncryptionKeyName:             pulumi.String("string"),
    	FixedUserOnly:                 pulumi.String("string"),
    	Name:                          pulumi.String("string"),
    	PasswordLength:                pulumi.String("string"),
    	RdpAdminName:                  pulumi.String("string"),
    	RdpAdminPwd:                   pulumi.String("string"),
    	RdpHostName:                   pulumi.String("string"),
    	RdpHostPort:                   pulumi.String("string"),
    	RdpUserGroups:                 pulumi.String("string"),
    	SecureAccessAllowExternalUser: pulumi.Bool(false),
    	SecureAccessEnable:            pulumi.String("string"),
    	SecureAccessHosts: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SecureAccessRdpDomain: pulumi.String("string"),
    	SecureAccessRdpUser:   pulumi.String("string"),
    	SecureAccessWeb:       pulumi.Bool(false),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TargetName: pulumi.String("string"),
    	UserTtl:    pulumi.String("string"),
    })
    
    var dynamicSecretRdpResource = new DynamicSecretRdp("dynamicSecretRdpResource", DynamicSecretRdpArgs.builder()
        .dynamicSecretRdpId("string")
        .encryptionKeyName("string")
        .fixedUserOnly("string")
        .name("string")
        .passwordLength("string")
        .rdpAdminName("string")
        .rdpAdminPwd("string")
        .rdpHostName("string")
        .rdpHostPort("string")
        .rdpUserGroups("string")
        .secureAccessAllowExternalUser(false)
        .secureAccessEnable("string")
        .secureAccessHosts("string")
        .secureAccessRdpDomain("string")
        .secureAccessRdpUser("string")
        .secureAccessWeb(false)
        .tags("string")
        .targetName("string")
        .userTtl("string")
        .build());
    
    dynamic_secret_rdp_resource = akeyless.DynamicSecretRdp("dynamicSecretRdpResource",
        dynamic_secret_rdp_id="string",
        encryption_key_name="string",
        fixed_user_only="string",
        name="string",
        password_length="string",
        rdp_admin_name="string",
        rdp_admin_pwd="string",
        rdp_host_name="string",
        rdp_host_port="string",
        rdp_user_groups="string",
        secure_access_allow_external_user=False,
        secure_access_enable="string",
        secure_access_hosts=["string"],
        secure_access_rdp_domain="string",
        secure_access_rdp_user="string",
        secure_access_web=False,
        tags=["string"],
        target_name="string",
        user_ttl="string")
    
    const dynamicSecretRdpResource = new akeyless.DynamicSecretRdp("dynamicSecretRdpResource", {
        dynamicSecretRdpId: "string",
        encryptionKeyName: "string",
        fixedUserOnly: "string",
        name: "string",
        passwordLength: "string",
        rdpAdminName: "string",
        rdpAdminPwd: "string",
        rdpHostName: "string",
        rdpHostPort: "string",
        rdpUserGroups: "string",
        secureAccessAllowExternalUser: false,
        secureAccessEnable: "string",
        secureAccessHosts: ["string"],
        secureAccessRdpDomain: "string",
        secureAccessRdpUser: "string",
        secureAccessWeb: false,
        tags: ["string"],
        targetName: "string",
        userTtl: "string",
    });
    
    type: akeyless:DynamicSecretRdp
    properties:
        dynamicSecretRdpId: string
        encryptionKeyName: string
        fixedUserOnly: string
        name: string
        passwordLength: string
        rdpAdminName: string
        rdpAdminPwd: string
        rdpHostName: string
        rdpHostPort: string
        rdpUserGroups: string
        secureAccessAllowExternalUser: false
        secureAccessEnable: string
        secureAccessHosts:
            - string
        secureAccessRdpDomain: string
        secureAccessRdpUser: string
        secureAccessWeb: false
        tags:
            - string
        targetName: string
        userTtl: string
    

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

    DynamicSecretRdpId string
    The ID of this resource.
    EncryptionKeyName string
    Encrypt dynamic secret details with following key
    FixedUserOnly string
    Enable fixed user only
    Name string
    Dynamic secret name
    PasswordLength string
    The length of the password to be generated
    RdpAdminName string
    RDP Admin name
    RdpAdminPwd string
    RDP Admin Password
    RdpHostName string
    RDP Host name
    RdpHostPort string
    RDP Host port
    RdpUserGroups string
    RDP UserGroup name(s). Multiple values should be separated by comma
    SecureAccessAllowExternalUser bool
    Allow providing external user for a domain users
    SecureAccessEnable string
    Enable/Disable secure remote access, [true/false]
    SecureAccessHosts List<string>
    Target servers for connections., For multiple values repeat this flag.
    SecureAccessRdpDomain string
    Required when the Dynamic Secret is used for a domain user
    SecureAccessRdpUser string
    Override the RDP Domain username
    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 dynamic secret creation
    UserTtl string
    User TTL
    DynamicSecretRdpId string
    The ID of this resource.
    EncryptionKeyName string
    Encrypt dynamic secret details with following key
    FixedUserOnly string
    Enable fixed user only
    Name string
    Dynamic secret name
    PasswordLength string
    The length of the password to be generated
    RdpAdminName string
    RDP Admin name
    RdpAdminPwd string
    RDP Admin Password
    RdpHostName string
    RDP Host name
    RdpHostPort string
    RDP Host port
    RdpUserGroups string
    RDP UserGroup name(s). Multiple values should be separated by comma
    SecureAccessAllowExternalUser bool
    Allow providing external user for a domain users
    SecureAccessEnable string
    Enable/Disable secure remote access, [true/false]
    SecureAccessHosts []string
    Target servers for connections., For multiple values repeat this flag.
    SecureAccessRdpDomain string
    Required when the Dynamic Secret is used for a domain user
    SecureAccessRdpUser string
    Override the RDP Domain username
    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 dynamic secret creation
    UserTtl string
    User TTL
    dynamicSecretRdpId String
    The ID of this resource.
    encryptionKeyName String
    Encrypt dynamic secret details with following key
    fixedUserOnly String
    Enable fixed user only
    name String
    Dynamic secret name
    passwordLength String
    The length of the password to be generated
    rdpAdminName String
    RDP Admin name
    rdpAdminPwd String
    RDP Admin Password
    rdpHostName String
    RDP Host name
    rdpHostPort String
    RDP Host port
    rdpUserGroups String
    RDP UserGroup name(s). Multiple values should be separated by comma
    secureAccessAllowExternalUser Boolean
    Allow providing external user for a domain users
    secureAccessEnable String
    Enable/Disable secure remote access, [true/false]
    secureAccessHosts List<String>
    Target servers for connections., For multiple values repeat this flag.
    secureAccessRdpDomain String
    Required when the Dynamic Secret is used for a domain user
    secureAccessRdpUser String
    Override the RDP Domain username
    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 dynamic secret creation
    userTtl String
    User TTL
    dynamicSecretRdpId string
    The ID of this resource.
    encryptionKeyName string
    Encrypt dynamic secret details with following key
    fixedUserOnly string
    Enable fixed user only
    name string
    Dynamic secret name
    passwordLength string
    The length of the password to be generated
    rdpAdminName string
    RDP Admin name
    rdpAdminPwd string
    RDP Admin Password
    rdpHostName string
    RDP Host name
    rdpHostPort string
    RDP Host port
    rdpUserGroups string
    RDP UserGroup name(s). Multiple values should be separated by comma
    secureAccessAllowExternalUser boolean
    Allow providing external user for a domain users
    secureAccessEnable string
    Enable/Disable secure remote access, [true/false]
    secureAccessHosts string[]
    Target servers for connections., For multiple values repeat this flag.
    secureAccessRdpDomain string
    Required when the Dynamic Secret is used for a domain user
    secureAccessRdpUser string
    Override the RDP Domain username
    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 dynamic secret creation
    userTtl string
    User TTL
    dynamic_secret_rdp_id str
    The ID of this resource.
    encryption_key_name str
    Encrypt dynamic secret details with following key
    fixed_user_only str
    Enable fixed user only
    name str
    Dynamic secret name
    password_length str
    The length of the password to be generated
    rdp_admin_name str
    RDP Admin name
    rdp_admin_pwd str
    RDP Admin Password
    rdp_host_name str
    RDP Host name
    rdp_host_port str
    RDP Host port
    rdp_user_groups str
    RDP UserGroup name(s). Multiple values should be separated by comma
    secure_access_allow_external_user bool
    Allow providing external user for a domain users
    secure_access_enable str
    Enable/Disable secure remote access, [true/false]
    secure_access_hosts Sequence[str]
    Target servers for connections., For multiple values repeat this flag.
    secure_access_rdp_domain str
    Required when the Dynamic Secret is used for a domain user
    secure_access_rdp_user str
    Override the RDP Domain username
    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 dynamic secret creation
    user_ttl str
    User TTL
    dynamicSecretRdpId String
    The ID of this resource.
    encryptionKeyName String
    Encrypt dynamic secret details with following key
    fixedUserOnly String
    Enable fixed user only
    name String
    Dynamic secret name
    passwordLength String
    The length of the password to be generated
    rdpAdminName String
    RDP Admin name
    rdpAdminPwd String
    RDP Admin Password
    rdpHostName String
    RDP Host name
    rdpHostPort String
    RDP Host port
    rdpUserGroups String
    RDP UserGroup name(s). Multiple values should be separated by comma
    secureAccessAllowExternalUser Boolean
    Allow providing external user for a domain users
    secureAccessEnable String
    Enable/Disable secure remote access, [true/false]
    secureAccessHosts List<String>
    Target servers for connections., For multiple values repeat this flag.
    secureAccessRdpDomain String
    Required when the Dynamic Secret is used for a domain user
    secureAccessRdpUser String
    Override the RDP Domain username
    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 dynamic secret creation
    userTtl String
    User TTL

    Outputs

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

    Get an existing DynamicSecretRdp 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?: DynamicSecretRdpState, opts?: CustomResourceOptions): DynamicSecretRdp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dynamic_secret_rdp_id: Optional[str] = None,
            encryption_key_name: Optional[str] = None,
            fixed_user_only: Optional[str] = None,
            name: Optional[str] = None,
            password_length: Optional[str] = None,
            rdp_admin_name: Optional[str] = None,
            rdp_admin_pwd: Optional[str] = None,
            rdp_host_name: Optional[str] = None,
            rdp_host_port: Optional[str] = None,
            rdp_user_groups: Optional[str] = None,
            secure_access_allow_external_user: Optional[bool] = None,
            secure_access_enable: Optional[str] = None,
            secure_access_hosts: Optional[Sequence[str]] = None,
            secure_access_rdp_domain: Optional[str] = None,
            secure_access_rdp_user: Optional[str] = None,
            secure_access_web: Optional[bool] = None,
            tags: Optional[Sequence[str]] = None,
            target_name: Optional[str] = None,
            user_ttl: Optional[str] = None) -> DynamicSecretRdp
    func GetDynamicSecretRdp(ctx *Context, name string, id IDInput, state *DynamicSecretRdpState, opts ...ResourceOption) (*DynamicSecretRdp, error)
    public static DynamicSecretRdp Get(string name, Input<string> id, DynamicSecretRdpState? state, CustomResourceOptions? opts = null)
    public static DynamicSecretRdp get(String name, Output<String> id, DynamicSecretRdpState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:DynamicSecretRdp    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.
    The following state arguments are supported:
    DynamicSecretRdpId string
    The ID of this resource.
    EncryptionKeyName string
    Encrypt dynamic secret details with following key
    FixedUserOnly string
    Enable fixed user only
    Name string
    Dynamic secret name
    PasswordLength string
    The length of the password to be generated
    RdpAdminName string
    RDP Admin name
    RdpAdminPwd string
    RDP Admin Password
    RdpHostName string
    RDP Host name
    RdpHostPort string
    RDP Host port
    RdpUserGroups string
    RDP UserGroup name(s). Multiple values should be separated by comma
    SecureAccessAllowExternalUser bool
    Allow providing external user for a domain users
    SecureAccessEnable string
    Enable/Disable secure remote access, [true/false]
    SecureAccessHosts List<string>
    Target servers for connections., For multiple values repeat this flag.
    SecureAccessRdpDomain string
    Required when the Dynamic Secret is used for a domain user
    SecureAccessRdpUser string
    Override the RDP Domain username
    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 dynamic secret creation
    UserTtl string
    User TTL
    DynamicSecretRdpId string
    The ID of this resource.
    EncryptionKeyName string
    Encrypt dynamic secret details with following key
    FixedUserOnly string
    Enable fixed user only
    Name string
    Dynamic secret name
    PasswordLength string
    The length of the password to be generated
    RdpAdminName string
    RDP Admin name
    RdpAdminPwd string
    RDP Admin Password
    RdpHostName string
    RDP Host name
    RdpHostPort string
    RDP Host port
    RdpUserGroups string
    RDP UserGroup name(s). Multiple values should be separated by comma
    SecureAccessAllowExternalUser bool
    Allow providing external user for a domain users
    SecureAccessEnable string
    Enable/Disable secure remote access, [true/false]
    SecureAccessHosts []string
    Target servers for connections., For multiple values repeat this flag.
    SecureAccessRdpDomain string
    Required when the Dynamic Secret is used for a domain user
    SecureAccessRdpUser string
    Override the RDP Domain username
    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 dynamic secret creation
    UserTtl string
    User TTL
    dynamicSecretRdpId String
    The ID of this resource.
    encryptionKeyName String
    Encrypt dynamic secret details with following key
    fixedUserOnly String
    Enable fixed user only
    name String
    Dynamic secret name
    passwordLength String
    The length of the password to be generated
    rdpAdminName String
    RDP Admin name
    rdpAdminPwd String
    RDP Admin Password
    rdpHostName String
    RDP Host name
    rdpHostPort String
    RDP Host port
    rdpUserGroups String
    RDP UserGroup name(s). Multiple values should be separated by comma
    secureAccessAllowExternalUser Boolean
    Allow providing external user for a domain users
    secureAccessEnable String
    Enable/Disable secure remote access, [true/false]
    secureAccessHosts List<String>
    Target servers for connections., For multiple values repeat this flag.
    secureAccessRdpDomain String
    Required when the Dynamic Secret is used for a domain user
    secureAccessRdpUser String
    Override the RDP Domain username
    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 dynamic secret creation
    userTtl String
    User TTL
    dynamicSecretRdpId string
    The ID of this resource.
    encryptionKeyName string
    Encrypt dynamic secret details with following key
    fixedUserOnly string
    Enable fixed user only
    name string
    Dynamic secret name
    passwordLength string
    The length of the password to be generated
    rdpAdminName string
    RDP Admin name
    rdpAdminPwd string
    RDP Admin Password
    rdpHostName string
    RDP Host name
    rdpHostPort string
    RDP Host port
    rdpUserGroups string
    RDP UserGroup name(s). Multiple values should be separated by comma
    secureAccessAllowExternalUser boolean
    Allow providing external user for a domain users
    secureAccessEnable string
    Enable/Disable secure remote access, [true/false]
    secureAccessHosts string[]
    Target servers for connections., For multiple values repeat this flag.
    secureAccessRdpDomain string
    Required when the Dynamic Secret is used for a domain user
    secureAccessRdpUser string
    Override the RDP Domain username
    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 dynamic secret creation
    userTtl string
    User TTL
    dynamic_secret_rdp_id str
    The ID of this resource.
    encryption_key_name str
    Encrypt dynamic secret details with following key
    fixed_user_only str
    Enable fixed user only
    name str
    Dynamic secret name
    password_length str
    The length of the password to be generated
    rdp_admin_name str
    RDP Admin name
    rdp_admin_pwd str
    RDP Admin Password
    rdp_host_name str
    RDP Host name
    rdp_host_port str
    RDP Host port
    rdp_user_groups str
    RDP UserGroup name(s). Multiple values should be separated by comma
    secure_access_allow_external_user bool
    Allow providing external user for a domain users
    secure_access_enable str
    Enable/Disable secure remote access, [true/false]
    secure_access_hosts Sequence[str]
    Target servers for connections., For multiple values repeat this flag.
    secure_access_rdp_domain str
    Required when the Dynamic Secret is used for a domain user
    secure_access_rdp_user str
    Override the RDP Domain username
    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 dynamic secret creation
    user_ttl str
    User TTL
    dynamicSecretRdpId String
    The ID of this resource.
    encryptionKeyName String
    Encrypt dynamic secret details with following key
    fixedUserOnly String
    Enable fixed user only
    name String
    Dynamic secret name
    passwordLength String
    The length of the password to be generated
    rdpAdminName String
    RDP Admin name
    rdpAdminPwd String
    RDP Admin Password
    rdpHostName String
    RDP Host name
    rdpHostPort String
    RDP Host port
    rdpUserGroups String
    RDP UserGroup name(s). Multiple values should be separated by comma
    secureAccessAllowExternalUser Boolean
    Allow providing external user for a domain users
    secureAccessEnable String
    Enable/Disable secure remote access, [true/false]
    secureAccessHosts List<String>
    Target servers for connections., For multiple values repeat this flag.
    secureAccessRdpDomain String
    Required when the Dynamic Secret is used for a domain user
    secureAccessRdpUser String
    Override the RDP Domain username
    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 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.
    akeyless logo
    akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community