Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.ysb33r.terraform.wrapper") version "0.2.2"
}

See also:

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