Skip to content

Commit 3153257

Browse files
committed
yeah, amazon, i'm quite certain i want to provision an iam role
1 parent 9d5662a commit 3153257

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ a boot task for deploying aws cloud formation templates
44

55
[](dependency)
66
```clojure
7-
[tailrecursion/boot-stack "0.1.0-SNAPSHOT"] ;; latest release
7+
[tailrecursion/boot-stack "0.1.0"] ;; latest release
88
```
99
[](/dependency)
1010

build.boot

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(require
77
'[adzerk.bootlaces :refer :all])
88

9-
(def +version+ "0.1.0-SNAPSHOT")
9+
(def +version+ "0.1.0")
1010

1111
(bootlaces! +version+)
1212

src/tailrecursion/boot_stack/client.clj

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
(defn creation [stack template]
1818
(-> (CreateStackRequest.)
19+
(.withCapabilities ["CAPABILITY_IAM" "CAPABILITY_NAMED_IAM"])
1920
(.withStackName stack)
2021
(.withTemplateBody (generate-string template))))
2122

0 commit comments

Comments
 (0)