-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathTerraformValidateOptions.Generated.cs
More file actions
59 lines (49 loc) · 1.89 KB
/
Copy pathTerraformValidateOptions.Generated.cs
File metadata and controls
59 lines (49 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// <auto-generated>
// This file was generated by ModularPipelines.OptionsGenerator.
// Do not edit this file manually.
// </auto-generated>
#nullable enable
using System.CodeDom.Compiler;
using System.Diagnostics.CodeAnalysis;
using ModularPipelines.Attributes;
using ModularPipelines.Terraform.Options;
namespace ModularPipelines.Terraform.Options;
/// <summary>
/// Validate the configuration files in a directory, referring only to the
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("validate")]
public record TerraformValidateOptions : TerraformOptions
{
/// <summary>
/// Produce output in a machine-readable JSON format, suitable for use in text editor integrations and other automated systems. Always disables color.
/// </summary>
[CliFlag("-json")]
public bool? Json { get; set; }
/// <summary>
/// If specified, output won't contain any color.
/// </summary>
[CliFlag("-no-color")]
public bool? NoColor { get; set; }
/// <summary>
/// If specified, Terraform will not validate test files.
/// </summary>
[CliFlag("-no-tests")]
public bool? NoTests { get; set; }
/// <summary>
/// Set the Terraform test directory, defaults to "tests".
/// </summary>
[CliOption("-test-directory", Format = OptionFormat.EqualsSeparated)]
public string? TestDirectory { get; set; }
/// <summary>
/// If specified, the command will also validate .tfquery.hcl files.
/// </summary>
[CliFlag("-query")]
public bool? Query { get; set; }
/// <summary>
/// Load variable values from the given file, in addition to the default files terraform.tfvars and *.auto.tfvars. Use this option more than once to include more than one variables file.
/// </summary>
[CliOption("-var-file", Format = OptionFormat.EqualsSeparated)]
public string? VarFile { get; set; }
}