Skip to content

Commit

Permalink
Add CAPABILITY_AUTO_EXPAND (closes #43)
Browse files Browse the repository at this point in the history
  • Loading branch information
aidansteele committed Jan 19, 2020
1 parent 7b7c5a8 commit 45b26cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/stackit/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (s *Stackit) Prepare(ctx context.Context, input StackitUpInput, events chan
createInput := &cloudformation.CreateChangeSetInput{
ChangeSetName: aws.String(fmt.Sprintf("%s-csid-%d", input.StackName, time.Now().Unix())),
StackName: &input.StackName,
Capabilities: aws.StringSlice([]string{"CAPABILITY_IAM", "CAPABILITY_NAMED_IAM"}),
Capabilities: aws.StringSlice([]string{"CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND"}),
Parameters: input.Parameters,
Tags: mapToTags(input.Tags),
NotificationARNs: aws.StringSlice(input.NotificationARNs),
Expand Down

0 comments on commit 45b26cd

Please sign in to comment.