![]() |
VOOZH | about |
dotnet add package Cake.Issues.Terraform --version 5.9.1
NuGet\Install-Package Cake.Issues.Terraform -Version 5.9.1
<PackageReference Include="Cake.Issues.Terraform" Version="5.9.1" />
<PackageVersion Include="Cake.Issues.Terraform" Version="5.9.1" />Directory.Packages.props
<PackageReference Include="Cake.Issues.Terraform" />Project file
paket add Cake.Issues.Terraform --version 5.9.1
#r "nuget: Cake.Issues.Terraform, 5.9.1"
#:package Cake.Issues.Terraform@5.9.1
#addin nuget:?package=Cake.Issues.Terraform&version=5.9.1
NOTE: This is the version of the addin compatible with Cake .NET Tool. For addin compatible with Cake Frosting see Cake.Frosting.Issues.Terraform.
The Terraform support for the Cake.Issues addin for Cake allows you to read issues logged by Terraform validate command.
Cake.Issues redefines issue management within the Cake build system by offering a comprehensive, universal, and extensible solution. The unique capabilities of the addins empower development teams to enforce coding standards, generate insightful reports, seamlessly incorporate various linting tools, and streamlining the integration with pull requests. With its modular architecture and extensive set of aliases, Cake.Issues provides a future-proof infrastructure for issue management in Cake builds, fostering a more efficient and adaptable development process.
For more information and extensive documentation see the Cake.Issues website. For general information about the Cake build automation system see the Cake website.
Integrating Cake.Issues into your Cake build is straightforward. With minimal setup, teams can enjoy the benefits of enhanced code quality management seamlessly integrated into their existing build pipeline.
After adding the addin the log file of a Terraform validate run can be parsed:
Task("Validate-Terraform").Does(() =>
{
var repoRootPath = @"c:\repo";
// Run Terraform.
IEnumerable<string> redirectedStandardOutput;
StartProcess(
"terraform",
new ProcessSettings
{
Arguments = "validate --json",
WorkingDirectory = repoRootPath,
RedirectStandardOutput = true,
},
out redirectedStandardOutput,
);
// Read issues.
var issues =
ReadIssues(
TerraformIssuesFromContent(string.Join(Environment.NewLine, redirectedStandardOutput)),
repoRootPath);
Information("{0} issues are found.", issues.Count());
});
For questions and to discuss ideas & feature requests, use the GitHub discussions on the Cake GitHub repository, under the Extension Q&A category.
Contributions are welcome. See Contribution Guidelines.
Binary distributions for some addins contain third-party code which is licensed under its own respective license. See LICENSE for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 6.0.0-beta0002 | 118 | 1/14/2026 |
| 5.9.1 | 507 | 9/25/2025 |
| 5.9.0 | 228 | 9/24/2025 |
| 5.8.0 | 216 | 8/22/2025 |
| 5.7.0 | 158 | 8/3/2025 |
| 5.6.1 | 213 | 7/12/2025 |
| 5.6.0 | 168 | 7/5/2025 |
| 5.5.0 | 351 | 1/23/2025 |
| 5.4.0 | 203 | 1/16/2025 |
| 5.3.0 | 202 | 1/10/2025 |
| 5.2.0 | 180 | 1/9/2025 |
| 5.1.1 | 217 | 1/5/2025 |
| 5.1.0 | 234 | 1/3/2025 |
| 5.0.1 | 261 | 12/17/2024 |
| 5.0.0 | 283 | 12/2/2024 |
| 5.0.0-beta0002 | 190 | 11/23/2024 |
| 5.0.0-beta0001 | 182 | 11/18/2024 |
| 4.12.0 | 321 | 11/5/2024 |
| 4.11.0 | 302 | 10/6/2024 |