Skip to content

Commit

Permalink
pkg/model: Fix dropped error
Browse files Browse the repository at this point in the history
  • Loading branch information
alrs authored and xichengliudui committed Apr 11, 2019
1 parent ad2d954 commit 77f5935
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/model/iam.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ func (b *IAMModelBuilder) Build(c *fi.ModelBuilderContext) error {
return fmt.Errorf("unable to parse instance profile name from arn %q: %v", profileARN, err)
}
err = b.buildIAMTasks(igRole, iamName, c, true)
if err != nil {
return err
}
}

// Generate IAM tasks for each managed role
Expand Down

0 comments on commit 77f5935

Please sign in to comment.