mirror of https://github.com/pulumi/pulumi.git
20 lines
394 B
C#
20 lines
394 B
C#
// Copyright 2016-2021, Pulumi Corporation
|
|
|
|
namespace Pulumi.Automation
|
|
{
|
|
public class StackSettingsConfigValue
|
|
{
|
|
public string Value { get; }
|
|
|
|
public bool IsSecure { get; }
|
|
|
|
public StackSettingsConfigValue(
|
|
string value,
|
|
bool isSecure)
|
|
{
|
|
this.Value = value;
|
|
this.IsSecure = isSecure;
|
|
}
|
|
}
|
|
}
|