Skip to content

Commit

Permalink
Merge pull request #6769 from alrs/pkg-dropped-errors
Browse files Browse the repository at this point in the history
pkg/model: Fix dropped error
  • Loading branch information
k8s-ci-robot authored Apr 15, 2019
2 parents ad2d954 + 677f19f commit ca7563d
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 ca7563d

Please sign in to comment.