Skip to content

Commit

Permalink
Release/0.0.36 (#38)
Browse files Browse the repository at this point in the history
Fixing parameter name for bootstrap-spoke-as.
  • Loading branch information
eamonnfaherty authored May 7, 2019
1 parent 1fffb4c commit 85d96d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions servicecatalog_puppet/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ def deploy(f, single_account):

@cli.command()
@click.argument('puppet_account_id')
@click.argument('iam_role_arn', nargs=-1)
def bootstrap_spoke_as(puppet_account_id, roles):
@click.argument('iam_role_arns', nargs=-1)
def bootstrap_spoke_as(puppet_account_id, iam_role_arns):
cross_accounts = []
index = 0
for role in roles:
for role in iam_role_arns:
cross_accounts.append(
(role, 'bootstrapping-role-{}'.format(index))
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="aws-service-catalog-puppet",
version="0.0.35",
version="0.0.36",
author="Eamonn Faherty",
author_email="[email protected]",
description="Making it easier to deploy ServiceCatalog products",
Expand Down

0 comments on commit 85d96d8

Please sign in to comment.