Skip to content

Commit

Permalink
Merge pull request #4 from jcolemorrison/release-6-17-2019
Browse files Browse the repository at this point in the history
Release 6 17 2019
  • Loading branch information
jcolemorrison authored Jun 17, 2019
2 parents ebf3bed + ffafee9 commit 508adca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/stacks.js
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ exports.createStack = async (template, name, stack, aws) => {
const { tags, iamRole, advanced, capabilityIam } = options

if (tags) opts.Tags = tags
if (iamRole) opts.RoleArn = iamRole
if (iamRole) opts.RoleARN = iamRole
if (capabilityIam) opts.Capabilities = ['CAPABILITY_NAMED_IAM']

if (advanced) {
Expand Down Expand Up @@ -540,7 +540,7 @@ exports.updateStack = async (template, name, stack, aws) => {
const { tags, iamRole, advanced, capabilityIam } = options

if (tags) opts.Tags = tags
if (iamRole) opts.RoleArn = iamRole
if (iamRole) opts.RoleARN = iamRole
if (capabilityIam) opts.Capabilities = ['CAPABILITY_NAMED_IAM']

if (advanced) {
Expand Down

0 comments on commit 508adca

Please sign in to comment.