We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d5662a commit 3153257Copy full SHA for 3153257
README.md
@@ -4,7 +4,7 @@ a boot task for deploying aws cloud formation templates
4
5
[](dependency)
6
```clojure
7
-[tailrecursion/boot-stack "0.1.0-SNAPSHOT"] ;; latest release
+[tailrecursion/boot-stack "0.1.0"] ;; latest release
8
```
9
[](/dependency)
10
build.boot
@@ -6,7 +6,7 @@
(require
'[adzerk.bootlaces :refer :all])
-(def +version+ "0.1.0-SNAPSHOT")
+(def +version+ "0.1.0")
11
(bootlaces! +version+)
12
src/tailrecursion/boot_stack/client.clj
@@ -16,6 +16,7 @@
16
17
(defn creation [stack template]
18
(-> (CreateStackRequest.)
19
+ (.withCapabilities ["CAPABILITY_IAM" "CAPABILITY_NAMED_IAM"])
20
(.withStackName stack)
21
(.withTemplateBody (generate-string template))))
22
0 commit comments