Skip to content

Commit

Permalink
Release/0.0.40 (#45)
Browse files Browse the repository at this point in the history
Fixed error launching a product in another region due to list launch path not being able to see a path to launch the product
  • Loading branch information
eamonnfaherty committed May 13, 2019
1 parent 0fee82e commit 5da55d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion servicecatalog_puppet/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ def process_stream(stream_name, stream, parameters, puppet_account_id, deploymen
account, region = stream_name.split("/")
role = "arn:aws:iam::{}:role/{}".format(account, 'servicecatalog-puppet/PuppetRole')
with betterboto_client.CrossAccountClientContextManager(
'servicecatalog', role, stream_name.replace("/", "-")
'servicecatalog', role, stream_name.replace("/", "-"), region_name=region
) as service_catalog:
for launch in stream:
logger.info('is launch: {} deployed'.format(launch.get('launch_name')))
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.39",
version="0.0.40",
author="Eamonn Faherty",
author_email="aws-service-catalog-tools@amazon.com",
description="Making it easier to deploy ServiceCatalog products",
Expand Down

0 comments on commit 5da55d7

Please sign in to comment.