Modifiers | Name | Description |
---|---|---|
static java.lang.String |
NAME |
Constructor and description |
---|
TerraformBackendExtension
(ProjectOperations projectOperations, ObjectFactory objectFactory, TerraformRemoteStateExtension globalRemote, TerraformSourceSets terraformSourceSets) |
Type Params | Return Type | Name and description |
---|---|---|
<T extends BackendSpec> |
void |
addBackend(java.lang.String name, java.lang.Class<T> backend) Adds the backend to the project's TerraformRemoteStateExtension and to every {@org.ysb33r.gradle.terraform.TerraformSourceDirectorySet}'s remote extension. |
<T extends BackendSpec> |
void |
addBackend(java.lang.String name, java.lang.Class<T> backend, Action<T> configurator) Adds the backend to the project's TerraformRemoteStateExtension and to every TerraformSourceDirectorySet's remote extension. |
<T extends BackendSpec> |
void |
addBackend(java.lang.String name, java.lang.Class<T> backend, groovy.lang.Closure configurator) Adds the backend to the project's TerraformRemoteStateExtension and to every TerraformSourceDirectorySet's remote extension. |
|
static TerraformBackendExtension |
find(Project project) |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Adds the backend to the project's TerraformRemoteStateExtension and to every {@org.ysb33r.gradle.terraform.TerraformSourceDirectorySet}'s remote extension.
name
- Name of backend.backend
- Class of backend.Adds the backend to the project's TerraformRemoteStateExtension and to every TerraformSourceDirectorySet's remote extension.
name
- Name of backend.backend
- Class of backend.configurator
- Configurator for backend.Adds the backend to the project's TerraformRemoteStateExtension and to every TerraformSourceDirectorySet's remote extension.
name
- Name of backend.backend
- Class of backend.configurator
- Configurator for backend.