org.ysb33r.terraform.check
Owner: Schalk Cronjé
Adds Terraform source format validation into the check lifecycle
https://ysb33rOrg.gitlab.io/terraform-gradle-plugin
Sources: https://gitlab.com/ysb33rOrg/terraform-gradle-plugin.git
Version 0.13.0
0.13.0
Created 05 December 2021.
Adds Terraform source format validation into the check lifecycle
Using the plugins DSL:
plugins {
id("org.ysb33r.terraform.check") version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ysb33r.gradle:terraform-gradle-base:0.13.0")
}
}
apply(plugin = "org.ysb33r.terraform.check")
Using the plugins DSL:
plugins {
id "org.ysb33r.terraform.check" version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ysb33r.gradle:terraform-gradle-base:0.13.0"
}
}
apply plugin: "org.ysb33r.terraform.check"