Skip to content

Commit

Permalink
fix: issue #658
Browse files Browse the repository at this point in the history
fix: issue #658
  • Loading branch information
eamonnfaherty committed Jun 7, 2023
2 parents 3fc45e5 + 59de00f commit 8f2fcad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[tool.poetry]
name = "aws-service-catalog-puppet"
version = "0.230.0"
version = "0.230.1"
description = "Making it easier to deploy ServiceCatalog products"
classifiers = ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Natural Language :: English"]
homepage = "https://service-catalog-tools-workshop.com/"
Expand Down Expand Up @@ -41,7 +41,7 @@ envs = ["main"]
to = {format = "poetry", path = "pyproject.toml"}

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.9"
requests = "2.31.0"
pyyaml = "==5.4"
jinja2 = "==2.11.3"
Expand Down
8 changes: 4 additions & 4 deletions servicecatalog_puppet/template_builder/hub/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1378,8 +1378,8 @@ def generate_single_action_run_projects(
"commands": [
'echo "section: \\"${SECTION}\\"" > parameters.yaml',
'echo "item: \\"${ITEM}\\"" >> parameters.yaml',
'echo "include_dependencies: \\"${INCLUDE_DEPENDENCIES}\\"" >> parameters.yaml',
'echo "include_reverse_dependencies: \\"${INCLUDE_REVERSE_DEPENDENCIES}\\"" >> parameters.yaml',
'echo "include_dependencies: ${INCLUDE_DEPENDENCIES}" >> parameters.yaml',
'echo "include_reverse_dependencies: ${INCLUDE_REVERSE_DEPENDENCIES}" >> parameters.yaml',
"cat parameters.yaml",
"zip parameters.zip parameters.yaml",
"aws s3 cp parameters.zip s3://sc-puppet-parameterised-runs-${PUPPET_ACCOUNT_ID}/parameters.zip",
Expand Down Expand Up @@ -1428,12 +1428,12 @@ def generate_single_action_run_projects(
{
"Type": "PLAINTEXT",
"Name": "INCLUDE_DEPENDENCIES",
"Value": "CHANGE_ME - should include your specified items dependencies true|false",
"Value": "CHANGE_ME - should include your specified items dependencies as a YAML boolean: true|false|Yes|No",
},
{
"Type": "PLAINTEXT",
"Name": "INCLUDE_REVERSE_DEPENDENCIES",
"Value": "CHANGE_ME - should include things that depend on your specified item true|false",
"Value": "CHANGE_ME - should include things that depend on your specified item as a YAML boolean: true|false|Yes|No",
},
]
+ deploy_env_vars,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

setup_kwargs = {
'name': 'aws-service-catalog-puppet',
'version': '0.230.0',
'version': '0.230.1',
'description': 'Making it easier to deploy ServiceCatalog products',
'long_description': '# aws-service-catalog-puppet\n\n![logo](./docs/logo.png) \n\n## Badges\n\n[![codecov](https://codecov.io/gh/awslabs/aws-service-catalog-puppet/branch/master/graph/badge.svg?token=e8M7mdsmy0)](https://codecov.io/gh/awslabs/aws-service-catalog-puppet)\n\n\n## What is it?\nThis is a python3 framework that makes it easier to share multi region AWS Service Catalog portfolios and makes it \npossible to provision products into accounts declaratively using a metadata based rules engine.\n\nWith this framework you define your accounts in a YAML file. You give each account a set of tags, a default region and \na set of enabled regions.\n\nOnce you have done this you can define portfolios should be shared with each set of accounts using the tags and you \ncan specify which regions the shares occur in.\n\nIn addition to this, you can also define products that should be provisioned into accounts using the same tag based \napproach. The framework will assume role into the target account and provision the product on your behalf.\n\n\n## Getting started\n\nYou can read the [installation how to](https://service-catalog-tools-workshop.com/30-how-tos/10-installation/30-service-catalog-puppet.html)\nor you can read through the [every day use](https://service-catalog-tools-workshop.com/30-how-tos/50-every-day-use.html)\nguides.\n\nYou can read the [documentation](https://aws-service-catalog-puppet.readthedocs.io/en/latest/) to understand the inner \nworkings. \n\n\n## Going further\n\nThe framework is one of a pair. The other is [aws-service-catalog-factory](https://github.com/awslabs/aws-service-catalog-factory).\nWith Service Catalog Factory you can create pipelines that deploy multi region portfolios very easily. \n\n## License\n\nThis library is licensed under the Apache 2.0 License. \n \n',
'author': 'Eamonn Faherty',
Expand Down

0 comments on commit 8f2fcad

Please sign in to comment.