org.ysb33r.terraform.remotestate.s3
Owner: Schalk Cronjé
Simplifies the storigin of Terraform remote state in S3
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.
Simplifies the storing of Terraform remote state in S3
Using the plugins DSL:
plugins {
id("org.ysb33r.terraform.remotestate.s3") 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.remotestate.s3")
Using the plugins DSL:
plugins {
id "org.ysb33r.terraform.remotestate.s3" 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.remotestate.s3"