Skip to content

Commit

Permalink
Merge pull request #1 from GESkunkworks/iam-path-fix
Browse files Browse the repository at this point in the history
pass IAM path to the uploader
  • Loading branch information
MichaelPalmer1 committed Jan 18, 2019
2 parents 469631e + 084d5e0 commit 55da251
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Unreleased

## 1.1.10
- Fix bug where the IAM path was not being passed in to the uploader

## 1.1.9
- Update requirements

Expand Down
5 changes: 4 additions & 1 deletion cert_uploader/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,10 @@ def main():
}

if options.type == 'iam':
upload_kwargs.update({'name': options.certificate_name})
upload_kwargs.update({
'name': options.certificate_name,
'iam_path': options.iam_path
})

# Perform the upload
arn = uploader.upload_certificate(**upload_kwargs)
Expand Down

0 comments on commit 55da251

Please sign in to comment.