-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathTerraformProvidersLockOptions.Generated.cs
More file actions
59 lines (49 loc) · 2.2 KB
/
TerraformProvidersLockOptions.Generated.cs
File metadata and controls
59 lines (49 loc) · 2.2 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>
/// Normally the dependency lock file (.terraform.lock.hcl) is updated
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("providers", "lock")]
public record TerraformProvidersLockOptions : TerraformOptions
{
/// <summary>
/// Consult the given filesystem mirror directory instead of the origin registry for each of the given providers.
/// </summary>
[CliOption("-fs-mirror", Format = OptionFormat.EqualsSeparated)]
public string? FsMirror { get; set; }
/// <summary>
/// Consult the given network mirror (given as a base URL) instead of the origin registry for each of the given providers.
/// </summary>
[CliOption("-net-mirror", Format = OptionFormat.EqualsSeparated)]
public string? NetMirror { get; set; }
/// <summary>
/// Choose a target platform to request package checksums for.
/// </summary>
[CliOption("-platform", Format = OptionFormat.EqualsSeparated)]
public string? Platform { get; set; }
/// <summary>
/// Enable the usage of the globally configured plugin cache. This will speed up the locking process, but the providers won't be loaded from an authoritative source.
/// </summary>
[CliFlag("-enable-plugin-cache")]
public bool? EnablePluginCache { get; set; }
/// <summary>
/// Set the Terraform test directory, defaults to "tests".
/// </summary>
[CliOption("-test-directory", Format = OptionFormat.EqualsSeparated)]
public string? TestDirectory { 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; }
}