mirror of https://github.com/pulumi/pulumi.git
44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
// Copyright 2016-2021, Pulumi Corporation
|
|
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
using YamlDotNet.Serialization;
|
|
|
|
namespace Pulumi.Automation
|
|
{
|
|
public class StackSettings
|
|
{
|
|
/// <summary>
|
|
/// This stack's secrets provider.
|
|
/// </summary>
|
|
[YamlMember(Alias="secretsprovider")]
|
|
[JsonPropertyName("secretsprovider")]
|
|
|
|
public string? SecretsProvider { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is the KMS-encrypted ciphertext for the data key used for secrets
|
|
/// encryption. Only used for cloud-based secrets providers.
|
|
/// </summary>
|
|
[YamlMember(Alias="encryptedkey")]
|
|
[JsonPropertyName("encryptedkey")]
|
|
|
|
public string? EncryptedKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is this stack's base64 encoded encryption salt. Only used for
|
|
/// passphrase-based secrets providers.
|
|
/// </summary>
|
|
[YamlMember(Alias="encryptionsalt")]
|
|
[JsonPropertyName("encryptionsalt")]
|
|
|
|
public string? EncryptionSalt { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is an optional configuration bag.
|
|
/// </summary>
|
|
|
|
public IDictionary<string, StackSettingsConfigValue>? Config { get; set; }
|
|
}
|
|
}
|