add IAM caps for into cloudformation command

Change-Id: Ia829b10afbce200bf31910552e1707814a9b9566
diff --git a/src/com/mirantis/mk/Aws.groovy b/src/com/mirantis/mk/Aws.groovy
index d0ec4c4..8c15e2d 100644
--- a/src/com/mirantis/mk/Aws.groovy
+++ b/src/com/mirantis/mk/Aws.groovy
@@ -38,7 +38,7 @@
 def createStack(venv_path, env_vars, template_file, stack_name, parameters = []) {
     def python = new com.mirantis.mk.Python()
 
-    def cmd = "aws cloudformation create-stack --stack-name ${stack_name} --template-body file://template/${template_file}"
+    def cmd = "aws cloudformation create-stack --stack-name ${stack_name} --template-body file://template/${template_file} --capabilities CAPABILITY_IAM"
 
     if (parameters != null && parameters.size() > 0) {
         cmd = "${cmd} --parameters"