org.ysb33r.terraform.rc
Owner: Schalk Cronjé
Deals specifically with the creation of terraformrc files
https://ysb33rOrg.gitlab.io/terraform-gradle-plugin
Sources: https://gitlab.com/ysb33rOrg/terraform-gradle-plugin.git
Version 0.7.0
0.7.0
Created 04 February 2020.
Deals specifically with the creation of terraformrc files
Using the plugins DSL:
plugins {
id("org.ysb33r.terraform.rc") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.ysb33r.gradle:terraform-gradle-plugin:0.7.0")
}
}
apply(plugin = "org.ysb33r.terraform.rc")
Using the plugins DSL:
plugins {
id "org.ysb33r.terraform.rc" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.ysb33r.gradle:terraform-gradle-plugin:0.7.0"
}
}
apply plugin: "org.ysb33r.terraform.rc"