Skip to content

Commit

Permalink
Fix up serialised member naming for CredentialPluginConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
tintoy committed Nov 9, 2019
1 parent c2abb9e commit 8893a1d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class CredentialPluginConfig
/// <summary>
/// Environment variables (if any) to set when running the plugin command.
/// </summary>
[YamlMember(Alias = "env")]
public List<EnvVarV1> EnvironmentVariables { get; } = new List<EnvVarV1>();

/// <summary>
Expand All @@ -40,6 +41,7 @@ public class CredentialPluginConfig
/// <summary>
/// Command-line arguments (if any) to pass to the plugin command.
/// </summary>
[YamlMember(Alias = "args")]
public List<string> Arguments { get; } = new List<string>();

/// <summary>
Expand Down

0 comments on commit 8893a1d

Please sign in to comment.