Show / Hide Table of Contents

Class SecretArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SecretArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Vault.Generic
Assembly: Pulumi.Vault.dll
Syntax
public sealed class SecretArgs : ResourceArgs

Constructors

View Source

SecretArgs()

Declaration
public SecretArgs()

Properties

View Source

DataJson

String containing a JSON-encoded object that will be written as the secret data at the given path.

Declaration
public Input<string> DataJson { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DisableRead

True/false. Set this to true if your vault authentication is not able to read the data. Setting this to true will break drift detection. Defaults to false.

Declaration
public Input<bool> DisableRead { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Path

The full logical path at which to write the given data. To write data into the "generic" secret backend mounted in Vault by default, this should be prefixed with secret/. Writing to other backends with this resource is possible; consult each backend's documentation to see which endpoints support the PUT and DELETE methods.

Declaration
public Input<string> Path { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.