harness.platform.SecretFile

Resource for creating a secret of type secret file in Harness.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Harness = Lbrlabs.PulumiPackage.Harness;

return await Deployment.RunAsync(() => 
{
    var example = new Harness.Platform.SecretFile("example", new()
    {
        Description = "test",
        FilePath = "file_path",
        Identifier = "identifier",
        SecretManagerIdentifier = "harnessSecretManager",
        Tags = new[]
        {
            "foo:bar",
        },
    });

});
package main

import (
	"github.com/lbrlabs/pulumi-harness/sdk/go/harness/platform"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := platform.NewSecretFile(ctx, "example", &platform.SecretFileArgs{
			Description:             pulumi.String("test"),
			FilePath:                pulumi.String("file_path"),
			Identifier:              pulumi.String("identifier"),
			SecretManagerIdentifier: pulumi.String("harnessSecretManager"),
			Tags: pulumi.StringArray{
				pulumi.String("foo:bar"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.harness.platform.SecretFile;
import com.pulumi.harness.platform.SecretFileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new SecretFile("example", SecretFileArgs.builder()        
            .description("test")
            .filePath("file_path")
            .identifier("identifier")
            .secretManagerIdentifier("harnessSecretManager")
            .tags("foo:bar")
            .build());

    }
}
import pulumi
import lbrlabs_pulumi_harness as harness

example = harness.platform.SecretFile("example",
    description="test",
    file_path="file_path",
    identifier="identifier",
    secret_manager_identifier="harnessSecretManager",
    tags=["foo:bar"])
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@pulumi/harness";

const example = new harness.platform.SecretFile("example", {
    description: "test",
    filePath: "file_path",
    identifier: "identifier",
    secretManagerIdentifier: "harnessSecretManager",
    tags: ["foo:bar"],
});
resources:
  example:
    type: harness:platform:SecretFile
    properties:
      description: test
      filePath: file_path
      identifier: identifier
      secretManagerIdentifier: harnessSecretManager
      tags:
        - foo:bar

Create SecretFile Resource

new SecretFile(name: string, args: SecretFileArgs, opts?: CustomResourceOptions);
@overload
def SecretFile(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               description: Optional[str] = None,
               file_path: Optional[str] = None,
               identifier: Optional[str] = None,
               name: Optional[str] = None,
               org_id: Optional[str] = None,
               project_id: Optional[str] = None,
               secret_manager_identifier: Optional[str] = None,
               tags: Optional[Sequence[str]] = None)
@overload
def SecretFile(resource_name: str,
               args: SecretFileArgs,
               opts: Optional[ResourceOptions] = None)
func NewSecretFile(ctx *Context, name string, args SecretFileArgs, opts ...ResourceOption) (*SecretFile, error)
public SecretFile(string name, SecretFileArgs args, CustomResourceOptions? opts = null)
public SecretFile(String name, SecretFileArgs args)
public SecretFile(String name, SecretFileArgs args, CustomResourceOptions options)
type: harness:platform:SecretFile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args SecretFileArgs
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 SecretFileArgs
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 SecretFileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args SecretFileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args SecretFileArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

FilePath string

Path of the file containing secret value

Identifier string

Unique identifier of the resource.

SecretManagerIdentifier string

Identifier of the Secret Manager used to manage the secret.

Description string

Description of the resource.

Name string

Name of the resource.

OrgId string

Unique identifier of the Organization.

ProjectId string

Unique identifier of the Project.

Tags List<string>

Tags to associate with the resource. Tags should be in the form name:value.

FilePath string

Path of the file containing secret value

Identifier string

Unique identifier of the resource.

SecretManagerIdentifier string

Identifier of the Secret Manager used to manage the secret.

Description string

Description of the resource.

Name string

Name of the resource.

OrgId string

Unique identifier of the Organization.

ProjectId string

Unique identifier of the Project.

Tags []string

Tags to associate with the resource. Tags should be in the form name:value.

filePath String

Path of the file containing secret value

identifier String

Unique identifier of the resource.

secretManagerIdentifier String

Identifier of the Secret Manager used to manage the secret.

description String

Description of the resource.

name String

Name of the resource.

orgId String

Unique identifier of the Organization.

projectId String

Unique identifier of the Project.

tags List<String>

Tags to associate with the resource. Tags should be in the form name:value.

filePath string

Path of the file containing secret value

identifier string

Unique identifier of the resource.

secretManagerIdentifier string

Identifier of the Secret Manager used to manage the secret.

description string

Description of the resource.

name string

Name of the resource.

orgId string

Unique identifier of the Organization.

projectId string

Unique identifier of the Project.

tags string[]

Tags to associate with the resource. Tags should be in the form name:value.

file_path str

Path of the file containing secret value

identifier str

Unique identifier of the resource.

secret_manager_identifier str

Identifier of the Secret Manager used to manage the secret.

description str

Description of the resource.

name str

Name of the resource.

org_id str

Unique identifier of the Organization.

project_id str

Unique identifier of the Project.

tags Sequence[str]

Tags to associate with the resource. Tags should be in the form name:value.

filePath String

Path of the file containing secret value

identifier String

Unique identifier of the resource.

secretManagerIdentifier String

Identifier of the Secret Manager used to manage the secret.

description String

Description of the resource.

name String

Name of the resource.

orgId String

Unique identifier of the Organization.

projectId String

Unique identifier of the Project.

tags List<String>

Tags to associate with the resource. Tags should be in the form name:value.

Outputs

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

Get an existing SecretFile 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?: SecretFileState, opts?: CustomResourceOptions): SecretFile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        file_path: Optional[str] = None,
        identifier: Optional[str] = None,
        name: Optional[str] = None,
        org_id: Optional[str] = None,
        project_id: Optional[str] = None,
        secret_manager_identifier: Optional[str] = None,
        tags: Optional[Sequence[str]] = None) -> SecretFile
func GetSecretFile(ctx *Context, name string, id IDInput, state *SecretFileState, opts ...ResourceOption) (*SecretFile, error)
public static SecretFile Get(string name, Input<string> id, SecretFileState? state, CustomResourceOptions? opts = null)
public static SecretFile get(String name, Output<String> id, SecretFileState 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:
Description string

Description of the resource.

FilePath string

Path of the file containing secret value

Identifier string

Unique identifier of the resource.

Name string

Name of the resource.

OrgId string

Unique identifier of the Organization.

ProjectId string

Unique identifier of the Project.

SecretManagerIdentifier string

Identifier of the Secret Manager used to manage the secret.

Tags List<string>

Tags to associate with the resource. Tags should be in the form name:value.

Description string

Description of the resource.

FilePath string

Path of the file containing secret value

Identifier string

Unique identifier of the resource.

Name string

Name of the resource.

OrgId string

Unique identifier of the Organization.

ProjectId string

Unique identifier of the Project.

SecretManagerIdentifier string

Identifier of the Secret Manager used to manage the secret.

Tags []string

Tags to associate with the resource. Tags should be in the form name:value.

description String

Description of the resource.

filePath String

Path of the file containing secret value

identifier String

Unique identifier of the resource.

name String

Name of the resource.

orgId String

Unique identifier of the Organization.

projectId String

Unique identifier of the Project.

secretManagerIdentifier String

Identifier of the Secret Manager used to manage the secret.

tags List<String>

Tags to associate with the resource. Tags should be in the form name:value.

description string

Description of the resource.

filePath string

Path of the file containing secret value

identifier string

Unique identifier of the resource.

name string

Name of the resource.

orgId string

Unique identifier of the Organization.

projectId string

Unique identifier of the Project.

secretManagerIdentifier string

Identifier of the Secret Manager used to manage the secret.

tags string[]

Tags to associate with the resource. Tags should be in the form name:value.

description str

Description of the resource.

file_path str

Path of the file containing secret value

identifier str

Unique identifier of the resource.

name str

Name of the resource.

org_id str

Unique identifier of the Organization.

project_id str

Unique identifier of the Project.

secret_manager_identifier str

Identifier of the Secret Manager used to manage the secret.

tags Sequence[str]

Tags to associate with the resource. Tags should be in the form name:value.

description String

Description of the resource.

filePath String

Path of the file containing secret value

identifier String

Unique identifier of the resource.

name String

Name of the resource.

orgId String

Unique identifier of the Organization.

projectId String

Unique identifier of the Project.

secretManagerIdentifier String

Identifier of the Secret Manager used to manage the secret.

tags List<String>

Tags to associate with the resource. Tags should be in the form name:value.

Import

Import using secret file id

 $ pulumi import harness:platform/secretFile:SecretFile example <secret_file_id>

Package Details

Repository
harness lbrlabs/pulumi-harness
License
Apache-2.0
Notes

This Pulumi package is based on the harness Terraform Provider.