mirror of https://github.com/pulumi/pulumi.git
20 lines
402 B
C#
20 lines
402 B
C#
// Copyright 2016-2022, Pulumi Corporation
|
|
|
|
namespace Pulumi.Automation
|
|
{
|
|
public class EnvironmentVariableValue
|
|
{
|
|
public string Value { get; set; }
|
|
|
|
public bool IsSecret { get; set; }
|
|
|
|
public EnvironmentVariableValue(
|
|
string value,
|
|
bool isSecret = false)
|
|
{
|
|
Value = value;
|
|
IsSecret = isSecret;
|
|
}
|
|
}
|
|
}
|