se.solrike.cloudformation
Owner: Lucas Persson
Gradle plugin for create/update and delete AWS Cloudformation stacks. The parameters for the Cloudformation template can be managed per environment and kept in for instance Java properties files. Min Gradle version 7.0.
https://github.com/Lucas3oo/cloudformation-gradle-plugin
Sources: https://github.com/Lucas3oo/cloudformation-gradle-plugin
Version 1.0.0 (latest)
Created 29 November 2022.
Add this plugin to your build using the plugins DSL:
plugins {
id("se.solrike.cloudformation") version "1.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("se.solrike.cloudformation:se.solrike.cloudformation.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("se.solrike.cloudformation") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.solrike.cloudformation:se.solrike.cloudformation.gradle.plugin:1.0.0") } } apply(plugin = "se.solrike.cloudformation")
- Applying plugins to all subprojects .