tanvd.kosogor.terraform
Owner: Vladislav Tankov
Support of Terraform in Gradle — from modules publish to deployment
https://github.com/TanVD/kosogor
Sources: https://github.com/TanVD/kosogor
Version 1.0.17 (latest)
Created 03 December 2023.
Support of Terraform in Gradle — from modules publish to deployment
Add this plugin to your build using the plugins DSL:
plugins {
id("tanvd.kosogor.terraform") version "1.0.17"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("tanvd.kosogor.terraform:tanvd.kosogor.terraform.gradle.plugin:1.0.17") }
It can then be applied in the precompiled script plugin:plugins { id("tanvd.kosogor.terraform") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tanvd.kosogor.terraform:tanvd.kosogor.terraform.gradle.plugin:1.0.17") } } apply(plugin = "tanvd.kosogor.terraform")
- Applying plugins to all subprojects .