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)
1.0.0
Created 29 November 2022.
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. Values in the Java properties files will be "interpolated" according to Groovy's evaluation. That is, properties can reference other properties and Groovy/Java functions.
Min Gradle version 7.0.
Using the plugins DSL:
plugins {
id("se.solrike.cloudformation") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("se.solrike.cloudformation:cloudformation-gradle-plugin:1.0.0")
}
}
apply(plugin = "se.solrike.cloudformation")
Using the plugins DSL:
plugins {
id "se.solrike.cloudformation" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "se.solrike.cloudformation:cloudformation-gradle-plugin:1.0.0"
}
}
apply plugin: "se.solrike.cloudformation"