Show / Hide Table of Contents

Class SecretBackendStaticRoleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SecretBackendStaticRoleArgs
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.Database
Assembly: Pulumi.Vault.dll
Syntax
public sealed class SecretBackendStaticRoleArgs : ResourceArgs

Constructors

View Source

SecretBackendStaticRoleArgs()

Declaration
public SecretBackendStaticRoleArgs()

Properties

View Source

Backend

The unique name of the Vault mount to configure.

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

DbName

The unique name of the database connection to use for the static role.

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

Name

A unique name to give the static role.

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

RotationPeriod

The amount of time Vault should wait before rotating the password, in seconds.

Declaration
public Input<int> RotationPeriod { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

RotationStatements

Database statements to execute to rotate the password for the configured database user.

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

Username

The database username that this static role corresponds to.

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