1. Packages
  2. Harness
  3. API Docs
  4. platform
  5. ConnectorCustomSecretManager
Harness v0.4.1 published on Monday, Oct 14, 2024 by Pulumi

harness.platform.ConnectorCustomSecretManager

Explore with Pulumi AI

harness logo
Harness v0.4.1 published on Monday, Oct 14, 2024 by Pulumi

    Example Usage

    Create ConnectorCustomSecretManager Resource

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

    Constructor syntax

    new ConnectorCustomSecretManager(name: string, args: ConnectorCustomSecretManagerArgs, opts?: CustomResourceOptions);
    @overload
    def ConnectorCustomSecretManager(resource_name: str,
                                     args: ConnectorCustomSecretManagerArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ConnectorCustomSecretManager(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     template_ref: Optional[str] = None,
                                     version_label: Optional[str] = None,
                                     identifier: Optional[str] = None,
                                     tags: Optional[Sequence[str]] = None,
                                     on_delegate: Optional[bool] = None,
                                     org_id: Optional[str] = None,
                                     project_id: Optional[str] = None,
                                     ssh_secret_ref: Optional[str] = None,
                                     delegate_selectors: Optional[Sequence[str]] = None,
                                     target_host: Optional[str] = None,
                                     template_inputs: Optional[Sequence[ConnectorCustomSecretManagerTemplateInputArgs]] = None,
                                     name: Optional[str] = None,
                                     timeout: Optional[int] = None,
                                     type: Optional[str] = None,
                                     description: Optional[str] = None,
                                     working_directory: Optional[str] = None)
    func NewConnectorCustomSecretManager(ctx *Context, name string, args ConnectorCustomSecretManagerArgs, opts ...ResourceOption) (*ConnectorCustomSecretManager, error)
    public ConnectorCustomSecretManager(string name, ConnectorCustomSecretManagerArgs args, CustomResourceOptions? opts = null)
    public ConnectorCustomSecretManager(String name, ConnectorCustomSecretManagerArgs args)
    public ConnectorCustomSecretManager(String name, ConnectorCustomSecretManagerArgs args, CustomResourceOptions options)
    
    type: harness:platform:ConnectorCustomSecretManager
    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 ConnectorCustomSecretManagerArgs
    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 ConnectorCustomSecretManagerArgs
    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 ConnectorCustomSecretManagerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectorCustomSecretManagerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectorCustomSecretManagerArgs
    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 connectorCustomSecretManagerResource = new Harness.Platform.ConnectorCustomSecretManager("connectorCustomSecretManagerResource", new()
    {
        TemplateRef = "string",
        VersionLabel = "string",
        Identifier = "string",
        Tags = new[]
        {
            "string",
        },
        OnDelegate = false,
        OrgId = "string",
        ProjectId = "string",
        SshSecretRef = "string",
        DelegateSelectors = new[]
        {
            "string",
        },
        TargetHost = "string",
        TemplateInputs = new[]
        {
            new Harness.Platform.Inputs.ConnectorCustomSecretManagerTemplateInputArgs
            {
                EnvironmentVariables = new[]
                {
                    new Harness.Platform.Inputs.ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs
                    {
                        Name = "string",
                        Type = "string",
                        Value = "string",
                        Default = false,
                    },
                },
            },
        },
        Name = "string",
        Timeout = 0,
        Type = "string",
        Description = "string",
        WorkingDirectory = "string",
    });
    
    example, err := platform.NewConnectorCustomSecretManager(ctx, "connectorCustomSecretManagerResource", &platform.ConnectorCustomSecretManagerArgs{
    	TemplateRef:  pulumi.String("string"),
    	VersionLabel: pulumi.String("string"),
    	Identifier:   pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	OnDelegate:   pulumi.Bool(false),
    	OrgId:        pulumi.String("string"),
    	ProjectId:    pulumi.String("string"),
    	SshSecretRef: pulumi.String("string"),
    	DelegateSelectors: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TargetHost: pulumi.String("string"),
    	TemplateInputs: platform.ConnectorCustomSecretManagerTemplateInputArray{
    		&platform.ConnectorCustomSecretManagerTemplateInputArgs{
    			EnvironmentVariables: platform.ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArray{
    				&platform.ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs{
    					Name:    pulumi.String("string"),
    					Type:    pulumi.String("string"),
    					Value:   pulumi.String("string"),
    					Default: pulumi.Bool(false),
    				},
    			},
    		},
    	},
    	Name:             pulumi.String("string"),
    	Timeout:          pulumi.Int(0),
    	Type:             pulumi.String("string"),
    	Description:      pulumi.String("string"),
    	WorkingDirectory: pulumi.String("string"),
    })
    
    var connectorCustomSecretManagerResource = new ConnectorCustomSecretManager("connectorCustomSecretManagerResource", ConnectorCustomSecretManagerArgs.builder()
        .templateRef("string")
        .versionLabel("string")
        .identifier("string")
        .tags("string")
        .onDelegate(false)
        .orgId("string")
        .projectId("string")
        .sshSecretRef("string")
        .delegateSelectors("string")
        .targetHost("string")
        .templateInputs(ConnectorCustomSecretManagerTemplateInputArgs.builder()
            .environmentVariables(ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs.builder()
                .name("string")
                .type("string")
                .value("string")
                .default_(false)
                .build())
            .build())
        .name("string")
        .timeout(0)
        .type("string")
        .description("string")
        .workingDirectory("string")
        .build());
    
    connector_custom_secret_manager_resource = harness.platform.ConnectorCustomSecretManager("connectorCustomSecretManagerResource",
        template_ref="string",
        version_label="string",
        identifier="string",
        tags=["string"],
        on_delegate=False,
        org_id="string",
        project_id="string",
        ssh_secret_ref="string",
        delegate_selectors=["string"],
        target_host="string",
        template_inputs=[harness.platform.ConnectorCustomSecretManagerTemplateInputArgs(
            environment_variables=[harness.platform.ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs(
                name="string",
                type="string",
                value="string",
                default=False,
            )],
        )],
        name="string",
        timeout=0,
        type="string",
        description="string",
        working_directory="string")
    
    const connectorCustomSecretManagerResource = new harness.platform.ConnectorCustomSecretManager("connectorCustomSecretManagerResource", {
        templateRef: "string",
        versionLabel: "string",
        identifier: "string",
        tags: ["string"],
        onDelegate: false,
        orgId: "string",
        projectId: "string",
        sshSecretRef: "string",
        delegateSelectors: ["string"],
        targetHost: "string",
        templateInputs: [{
            environmentVariables: [{
                name: "string",
                type: "string",
                value: "string",
                "default": false,
            }],
        }],
        name: "string",
        timeout: 0,
        type: "string",
        description: "string",
        workingDirectory: "string",
    });
    
    type: harness:platform:ConnectorCustomSecretManager
    properties:
        delegateSelectors:
            - string
        description: string
        identifier: string
        name: string
        onDelegate: false
        orgId: string
        projectId: string
        sshSecretRef: string
        tags:
            - string
        targetHost: string
        templateInputs:
            - environmentVariables:
                - default: false
                  name: string
                  type: string
                  value: string
        templateRef: string
        timeout: 0
        type: string
        versionLabel: string
        workingDirectory: string
    

    ConnectorCustomSecretManager Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ConnectorCustomSecretManager resource accepts the following input properties:

    Identifier string
    : Unique identifier of the resource.
    TemplateRef string
    : Reference to the template used for managing secrets.
    VersionLabel string
    : Version identifier of the secrets management template.
    DelegateSelectors List<string>
    Tags to filter delegates for connection.
    Description string
    : A brief description of what the resource does or is used for.
    Name string
    : Name of the resource.
    OnDelegate bool
    : Specifies whether the secrets manager runs on a Harness delegate.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    SshSecretRef string
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    Tags List<string>
    : Tags to associate with the resource.
    TargetHost string
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    TemplateInputs List<ConnectorCustomSecretManagerTemplateInput>
    Timeout int
    : Timeout in seconds for secrets management operations.
    Type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    WorkingDirectory string
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    Identifier string
    : Unique identifier of the resource.
    TemplateRef string
    : Reference to the template used for managing secrets.
    VersionLabel string
    : Version identifier of the secrets management template.
    DelegateSelectors []string
    Tags to filter delegates for connection.
    Description string
    : A brief description of what the resource does or is used for.
    Name string
    : Name of the resource.
    OnDelegate bool
    : Specifies whether the secrets manager runs on a Harness delegate.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    SshSecretRef string
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    Tags []string
    : Tags to associate with the resource.
    TargetHost string
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    TemplateInputs []ConnectorCustomSecretManagerTemplateInputArgs
    Timeout int
    : Timeout in seconds for secrets management operations.
    Type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    WorkingDirectory string
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    identifier String
    : Unique identifier of the resource.
    templateRef String
    : Reference to the template used for managing secrets.
    versionLabel String
    : Version identifier of the secrets management template.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    : A brief description of what the resource does or is used for.
    name String
    : Name of the resource.
    onDelegate Boolean
    : Specifies whether the secrets manager runs on a Harness delegate.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    sshSecretRef String
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags List<String>
    : Tags to associate with the resource.
    targetHost String
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    templateInputs List<ConnectorCustomSecretManagerTemplateInput>
    timeout Integer
    : Timeout in seconds for secrets management operations.
    type String
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    workingDirectory String
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    identifier string
    : Unique identifier of the resource.
    templateRef string
    : Reference to the template used for managing secrets.
    versionLabel string
    : Version identifier of the secrets management template.
    delegateSelectors string[]
    Tags to filter delegates for connection.
    description string
    : A brief description of what the resource does or is used for.
    name string
    : Name of the resource.
    onDelegate boolean
    : Specifies whether the secrets manager runs on a Harness delegate.
    orgId string
    Unique identifier of the organization.
    projectId string
    Unique identifier of the project.
    sshSecretRef string
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags string[]
    : Tags to associate with the resource.
    targetHost string
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    templateInputs ConnectorCustomSecretManagerTemplateInput[]
    timeout number
    : Timeout in seconds for secrets management operations.
    type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    workingDirectory string
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    identifier str
    : Unique identifier of the resource.
    template_ref str
    : Reference to the template used for managing secrets.
    version_label str
    : Version identifier of the secrets management template.
    delegate_selectors Sequence[str]
    Tags to filter delegates for connection.
    description str
    : A brief description of what the resource does or is used for.
    name str
    : Name of the resource.
    on_delegate bool
    : Specifies whether the secrets manager runs on a Harness delegate.
    org_id str
    Unique identifier of the organization.
    project_id str
    Unique identifier of the project.
    ssh_secret_ref str
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags Sequence[str]
    : Tags to associate with the resource.
    target_host str
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    template_inputs Sequence[ConnectorCustomSecretManagerTemplateInputArgs]
    timeout int
    : Timeout in seconds for secrets management operations.
    type str
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    working_directory str
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    identifier String
    : Unique identifier of the resource.
    templateRef String
    : Reference to the template used for managing secrets.
    versionLabel String
    : Version identifier of the secrets management template.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    : A brief description of what the resource does or is used for.
    name String
    : Name of the resource.
    onDelegate Boolean
    : Specifies whether the secrets manager runs on a Harness delegate.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    sshSecretRef String
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags List<String>
    : Tags to associate with the resource.
    targetHost String
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    templateInputs List<Property Map>
    timeout Number
    : Timeout in seconds for secrets management operations.
    type String
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    workingDirectory String
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.

    Outputs

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

    Get an existing ConnectorCustomSecretManager 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?: ConnectorCustomSecretManagerState, opts?: CustomResourceOptions): ConnectorCustomSecretManager
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            delegate_selectors: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            identifier: Optional[str] = None,
            name: Optional[str] = None,
            on_delegate: Optional[bool] = None,
            org_id: Optional[str] = None,
            project_id: Optional[str] = None,
            ssh_secret_ref: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            target_host: Optional[str] = None,
            template_inputs: Optional[Sequence[ConnectorCustomSecretManagerTemplateInputArgs]] = None,
            template_ref: Optional[str] = None,
            timeout: Optional[int] = None,
            type: Optional[str] = None,
            version_label: Optional[str] = None,
            working_directory: Optional[str] = None) -> ConnectorCustomSecretManager
    func GetConnectorCustomSecretManager(ctx *Context, name string, id IDInput, state *ConnectorCustomSecretManagerState, opts ...ResourceOption) (*ConnectorCustomSecretManager, error)
    public static ConnectorCustomSecretManager Get(string name, Input<string> id, ConnectorCustomSecretManagerState? state, CustomResourceOptions? opts = null)
    public static ConnectorCustomSecretManager get(String name, Output<String> id, ConnectorCustomSecretManagerState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    DelegateSelectors List<string>
    Tags to filter delegates for connection.
    Description string
    : A brief description of what the resource does or is used for.
    Identifier string
    : Unique identifier of the resource.
    Name string
    : Name of the resource.
    OnDelegate bool
    : Specifies whether the secrets manager runs on a Harness delegate.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    SshSecretRef string
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    Tags List<string>
    : Tags to associate with the resource.
    TargetHost string
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    TemplateInputs List<ConnectorCustomSecretManagerTemplateInput>
    TemplateRef string
    : Reference to the template used for managing secrets.
    Timeout int
    : Timeout in seconds for secrets management operations.
    Type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    VersionLabel string
    : Version identifier of the secrets management template.
    WorkingDirectory string
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    DelegateSelectors []string
    Tags to filter delegates for connection.
    Description string
    : A brief description of what the resource does or is used for.
    Identifier string
    : Unique identifier of the resource.
    Name string
    : Name of the resource.
    OnDelegate bool
    : Specifies whether the secrets manager runs on a Harness delegate.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    SshSecretRef string
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    Tags []string
    : Tags to associate with the resource.
    TargetHost string
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    TemplateInputs []ConnectorCustomSecretManagerTemplateInputArgs
    TemplateRef string
    : Reference to the template used for managing secrets.
    Timeout int
    : Timeout in seconds for secrets management operations.
    Type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    VersionLabel string
    : Version identifier of the secrets management template.
    WorkingDirectory string
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    : A brief description of what the resource does or is used for.
    identifier String
    : Unique identifier of the resource.
    name String
    : Name of the resource.
    onDelegate Boolean
    : Specifies whether the secrets manager runs on a Harness delegate.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    sshSecretRef String
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags List<String>
    : Tags to associate with the resource.
    targetHost String
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    templateInputs List<ConnectorCustomSecretManagerTemplateInput>
    templateRef String
    : Reference to the template used for managing secrets.
    timeout Integer
    : Timeout in seconds for secrets management operations.
    type String
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    versionLabel String
    : Version identifier of the secrets management template.
    workingDirectory String
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    delegateSelectors string[]
    Tags to filter delegates for connection.
    description string
    : A brief description of what the resource does or is used for.
    identifier string
    : Unique identifier of the resource.
    name string
    : Name of the resource.
    onDelegate boolean
    : Specifies whether the secrets manager runs on a Harness delegate.
    orgId string
    Unique identifier of the organization.
    projectId string
    Unique identifier of the project.
    sshSecretRef string
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags string[]
    : Tags to associate with the resource.
    targetHost string
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    templateInputs ConnectorCustomSecretManagerTemplateInput[]
    templateRef string
    : Reference to the template used for managing secrets.
    timeout number
    : Timeout in seconds for secrets management operations.
    type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    versionLabel string
    : Version identifier of the secrets management template.
    workingDirectory string
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    delegate_selectors Sequence[str]
    Tags to filter delegates for connection.
    description str
    : A brief description of what the resource does or is used for.
    identifier str
    : Unique identifier of the resource.
    name str
    : Name of the resource.
    on_delegate bool
    : Specifies whether the secrets manager runs on a Harness delegate.
    org_id str
    Unique identifier of the organization.
    project_id str
    Unique identifier of the project.
    ssh_secret_ref str
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags Sequence[str]
    : Tags to associate with the resource.
    target_host str
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    template_inputs Sequence[ConnectorCustomSecretManagerTemplateInputArgs]
    template_ref str
    : Reference to the template used for managing secrets.
    timeout int
    : Timeout in seconds for secrets management operations.
    type str
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    version_label str
    : Version identifier of the secrets management template.
    working_directory str
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    : A brief description of what the resource does or is used for.
    identifier String
    : Unique identifier of the resource.
    name String
    : Name of the resource.
    onDelegate Boolean
    : Specifies whether the secrets manager runs on a Harness delegate.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    sshSecretRef String
    : Reference to the Harness secret containing SSH credentials for the target host. Required if on_delegate is set to false.
    tags List<String>
    : Tags to associate with the resource.
    targetHost String
    : Host address where secrets will be managed. Required if on_delegate is set to false.
    templateInputs List<Property Map>
    templateRef String
    : Reference to the template used for managing secrets.
    timeout Number
    : Timeout in seconds for secrets management operations.
    type String
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    versionLabel String
    : Version identifier of the secrets management template.
    workingDirectory String
    : Directory path on the target host where secrets management tasks are performed. Required if on_delegate is set to false.

    Supporting Types

    ConnectorCustomSecretManagerTemplateInput, ConnectorCustomSecretManagerTemplateInputArgs

    ConnectorCustomSecretManagerTemplateInputEnvironmentVariable, ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs

    Name string
    : Name of the resource.
    Type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    Value string
    Default bool
    Name string
    : Name of the resource.
    Type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    Value string
    Default bool
    name String
    : Name of the resource.
    type String
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    value String
    default_ Boolean
    name string
    : Name of the resource.
    type string
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    value string
    default boolean
    name str
    : Name of the resource.
    type str
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    value str
    default bool
    name String
    : Name of the resource.
    type String
    : Type of the custom secrets manager, typically set to CustomSecretManager.
    value String
    default Boolean

    Import

    Import account level custom secret manager connector

    $ pulumi import harness:platform/connectorCustomSecretManager:ConnectorCustomSecretManager example <connector_id>
    

    Import org level custom secret manager connector

    $ pulumi import harness:platform/connectorCustomSecretManager:ConnectorCustomSecretManager example <ord_id>/<connector_id>
    

    Import project level custom secret manager connector

    $ pulumi import harness:platform/connectorCustomSecretManager:ConnectorCustomSecretManager example <org_id>/<project_id>/<connector_id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    harness pulumi/pulumi-harness
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the harness Terraform Provider.
    harness logo
    Harness v0.4.1 published on Monday, Oct 14, 2024 by Pulumi