Search Gradle plugins

Version 0.10.0-alpha.3

0.10.0-alpha.3

Created 17 November 2020.

Provides terraformw wrapper script so that terraform can be run from the command-line using exactly the same binary that the Gradle project will use.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.ysb33r.terraform.wrapper") version "0.10.0-alpha.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.ysb33r.gradle:terraform-gradle-plugin:0.10.0-alpha.3")
      }
    }
    
    apply(plugin = "org.ysb33r.terraform.wrapper")
  • Applying plugins to all subprojects .