├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── workflow.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Makefile.CI ├── Makefile.CodeQuality ├── Makefile.Factory ├── Makefile.Project ├── Makefile.Test ├── NOTICE ├── README.md ├── docs ├── .gitignore ├── Makefile ├── logo.png ├── make.bat ├── requirements.txt ├── source │ ├── conf.py │ ├── factory │ │ ├── building_your_pipelines.rst │ │ ├── cdk_support.rst │ │ ├── designing_your_product.rst │ │ ├── factory-getting-started-what-am-i-going-to-install-pipeline.png │ │ ├── factory-getting-started-what-am-i-going-to-install.png │ │ ├── factory-getting-started-what-am-i-going-to-install.xml │ │ ├── getting_up_and_running.rst │ │ ├── hub.png │ │ ├── project_assurance.rst │ │ ├── terraform_support.rst │ │ ├── upgrading.md │ │ ├── using_the_cli.rst │ │ ├── using_the_sdk.rst │ │ ├── what_is_this.md │ │ ├── whatisthis.png │ │ └── whatisthis.xml │ └── index.rst ├── whatisthis.png └── whatisthis.xml ├── examples ├── README.md └── portfolios │ ├── 1 │ └── ServiceCatalogFactory │ │ └── portfolios │ │ ├── demo.yaml │ │ └── demo │ │ └── Portfolios │ │ └── central-it-team-portfolio │ │ └── Products │ │ ├── product-a │ │ ├── Versions │ │ │ ├── v1 │ │ │ │ └── specification.yaml │ │ │ └── v2 │ │ │ │ └── specification.yaml │ │ └── product-a.yaml │ │ └── product-b │ │ ├── Versions │ │ ├── v1 │ │ │ └── specification.yaml │ │ └── v2 │ │ │ └── specification.yaml │ │ └── product-b.yaml │ ├── 2 │ └── ServiceCatalogFactory │ │ └── portfolios │ │ ├── demo.yaml │ │ └── demo │ │ └── Portfolios │ │ └── central-it-team-portfolio │ │ └── Products │ │ ├── product-a │ │ ├── Versions │ │ │ ├── v1 │ │ │ │ └── specification.yaml │ │ │ └── v2 │ │ │ │ └── specification.yaml │ │ └── product-a.yaml │ │ └── product-b │ │ ├── Versions │ │ ├── v1 │ │ │ └── specification.yaml │ │ └── v2 │ │ │ └── specification.yaml │ │ └── product-b.yaml │ ├── 3 │ └── ServiceCatalogFactory │ │ ├── portfolios │ │ └── demo.yaml │ │ └── products │ │ ├── product-a.yaml │ │ └── product-b.yaml │ ├── 4 │ └── ServiceCatalogFactory │ │ └── portfolios │ │ └── reinvent.yaml │ └── README.md ├── nose2.cfg ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── servicecatalog_factory ├── __init__.py ├── aws.py ├── cli.py ├── cloudformation_servicecatalog_deploy_action.py ├── commands │ ├── __init__.py │ ├── bootstrap.py │ ├── bootstrap_test.py │ ├── configuration_management.py │ ├── extract_from_ssm.py │ ├── generate.py │ ├── list_resources.py │ ├── management.py │ ├── portfolios.py │ ├── seed.py │ ├── show_pipelines.py │ ├── stacks.py │ ├── task_reference.py │ ├── validate.py │ └── version.py ├── common │ ├── serialisation_utils.py │ └── utils.py ├── config.py ├── constants.py ├── constants_test.py ├── empty.template.yaml ├── environmental_variables.py ├── example-config-small.yaml ├── example-config.yaml ├── portfolios │ ├── ccoe.yaml │ ├── example-quickstart.yaml │ ├── example-simple-github.yaml │ └── example-simple.yaml ├── schema │ ├── schema-apps.yaml │ ├── schema-portfolios.yaml │ ├── schema-stacks.yaml │ └── schema-workspaces.yaml ├── sdk.py ├── servicecatalog-factory-initialiser.template.yaml ├── servicecatalog-factory-regional.template.yaml ├── servicecatalog-factory-secondary.template.yaml ├── servicecatalog-factory.template.yaml ├── tasks_unit_tests_helper.py ├── template_builder │ ├── __init__.py │ ├── base_template.py │ ├── cdk │ │ ├── __init__.py │ │ ├── product_pipeline.py │ │ ├── product_template.py │ │ └── shared_resources.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── build.py │ │ ├── deploy.py │ │ ├── package.py │ │ ├── pipeline_template_builder.py │ │ ├── source.py │ │ ├── test.py │ │ └── utils.py │ ├── product_template_factory.py │ ├── product_templates.py │ ├── shared_resources.py │ └── troposphere_contstants │ │ ├── __init__.py │ │ └── codebuild.py ├── templates │ ├── constraint-launch-role-nested.template.yaml │ ├── constraint-launch-role-parent.template.yaml │ ├── product-terraform.j2 │ ├── static-html-page.html │ ├── terraform.template.yaml.j2 │ └── test-action.j2 ├── utilities │ ├── __init__.py │ ├── assets.py │ └── assets_test.py ├── utils.py ├── waluigi │ ├── __init__.py │ ├── scheduler.py │ └── tasks.py └── workflow │ ├── __init__.py │ ├── codecommit │ ├── __init__.py │ ├── create_code_repo_task.py │ └── create_code_repo_task_test.py │ ├── dependencies │ ├── __init__.py │ ├── reservable_resources.py │ ├── resources_factory.py │ ├── section_names.py │ └── task_factory.py │ ├── generic │ ├── __init__.py │ ├── create_generic_version_pipeline_task.py │ └── delete_stack_task.py │ ├── portfolios │ ├── __init__.py │ ├── associate_product_with_portfolio_task.py │ ├── associate_product_with_portfolio_task_test.py │ ├── associate_products_tasks.py │ ├── associate_tag_option_task.py │ ├── create_combined_product_pipeline_task.py │ ├── create_combined_product_pipeline_task_test.py │ ├── create_launch_role_name_constraints_task.py │ ├── create_portfolio_association_task.py │ ├── create_portfolio_association_task_test.py │ ├── create_portfolio_constraints_task.py │ ├── create_portfolio_task.py │ ├── create_portfolio_task_test.py │ ├── create_product_task.py │ ├── create_product_task_test.py │ ├── create_tag_option_task.py │ ├── create_version_pipeline_task.py │ ├── create_version_pipeline_task_test.py │ ├── delete_a_version_task.py │ ├── delete_a_version_task_test.py │ ├── delete_product_from_service_catalog_task.py │ ├── delete_product_task.py │ ├── delete_product_task_test.py │ ├── ensure_product_version_details_correct_task.py │ ├── ensure_product_version_details_correct_task_test.py │ ├── get_bucket_task.py │ └── get_bucket_task_test.py │ ├── tasks.py │ └── tasks_unit_tests_helper.py ├── setup.py ├── test_writer.py └── testing └── .gitignore /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | source = servicecatalog_factory -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.CI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/Makefile.CI -------------------------------------------------------------------------------- /Makefile.CodeQuality: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/Makefile.CodeQuality -------------------------------------------------------------------------------- /Makefile.Factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/Makefile.Factory -------------------------------------------------------------------------------- /Makefile.Project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/Makefile.Project -------------------------------------------------------------------------------- /Makefile.Test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/Makefile.Test -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/factory/building_your_pipelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/building_your_pipelines.rst -------------------------------------------------------------------------------- /docs/source/factory/cdk_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/cdk_support.rst -------------------------------------------------------------------------------- /docs/source/factory/designing_your_product.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/designing_your_product.rst -------------------------------------------------------------------------------- /docs/source/factory/factory-getting-started-what-am-i-going-to-install-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/factory-getting-started-what-am-i-going-to-install-pipeline.png -------------------------------------------------------------------------------- /docs/source/factory/factory-getting-started-what-am-i-going-to-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/factory-getting-started-what-am-i-going-to-install.png -------------------------------------------------------------------------------- /docs/source/factory/factory-getting-started-what-am-i-going-to-install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/factory-getting-started-what-am-i-going-to-install.xml -------------------------------------------------------------------------------- /docs/source/factory/getting_up_and_running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/getting_up_and_running.rst -------------------------------------------------------------------------------- /docs/source/factory/hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/hub.png -------------------------------------------------------------------------------- /docs/source/factory/project_assurance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/project_assurance.rst -------------------------------------------------------------------------------- /docs/source/factory/terraform_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/terraform_support.rst -------------------------------------------------------------------------------- /docs/source/factory/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/upgrading.md -------------------------------------------------------------------------------- /docs/source/factory/using_the_cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/using_the_cli.rst -------------------------------------------------------------------------------- /docs/source/factory/using_the_sdk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/using_the_sdk.rst -------------------------------------------------------------------------------- /docs/source/factory/what_is_this.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/what_is_this.md -------------------------------------------------------------------------------- /docs/source/factory/whatisthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/whatisthis.png -------------------------------------------------------------------------------- /docs/source/factory/whatisthis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/factory/whatisthis.xml -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/whatisthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/whatisthis.png -------------------------------------------------------------------------------- /docs/whatisthis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/docs/whatisthis.xml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/portfolios/1/ServiceCatalogFactory/portfolios/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/1/ServiceCatalogFactory/portfolios/demo.yaml -------------------------------------------------------------------------------- /examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v1/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v1/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v2/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v2/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/product-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/product-a.yaml -------------------------------------------------------------------------------- /examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v1/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v1/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v2/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v2/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/product-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/1/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/product-b.yaml -------------------------------------------------------------------------------- /examples/portfolios/2/ServiceCatalogFactory/portfolios/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/2/ServiceCatalogFactory/portfolios/demo.yaml -------------------------------------------------------------------------------- /examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v1/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v1/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v2/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/Versions/v2/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/product-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-a/product-a.yaml -------------------------------------------------------------------------------- /examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v1/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v1/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v2/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/Versions/v2/specification.yaml -------------------------------------------------------------------------------- /examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/product-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/2/ServiceCatalogFactory/portfolios/demo/Portfolios/central-it-team-portfolio/Products/product-b/product-b.yaml -------------------------------------------------------------------------------- /examples/portfolios/3/ServiceCatalogFactory/portfolios/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/3/ServiceCatalogFactory/portfolios/demo.yaml -------------------------------------------------------------------------------- /examples/portfolios/3/ServiceCatalogFactory/products/product-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/3/ServiceCatalogFactory/products/product-a.yaml -------------------------------------------------------------------------------- /examples/portfolios/3/ServiceCatalogFactory/products/product-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/3/ServiceCatalogFactory/products/product-b.yaml -------------------------------------------------------------------------------- /examples/portfolios/4/ServiceCatalogFactory/portfolios/reinvent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/4/ServiceCatalogFactory/portfolios/reinvent.yaml -------------------------------------------------------------------------------- /examples/portfolios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/examples/portfolios/README.md -------------------------------------------------------------------------------- /nose2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/nose2.cfg -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/pytest.ini -------------------------------------------------------------------------------- /servicecatalog_factory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/aws.py -------------------------------------------------------------------------------- /servicecatalog_factory/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/cli.py -------------------------------------------------------------------------------- /servicecatalog_factory/cloudformation_servicecatalog_deploy_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/cloudformation_servicecatalog_deploy_action.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/bootstrap.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/bootstrap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/bootstrap_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/configuration_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/configuration_management.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/extract_from_ssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/extract_from_ssm.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/generate.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/list_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/list_resources.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/management.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/portfolios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/portfolios.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/seed.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/show_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/show_pipelines.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/stacks.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/task_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/task_reference.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/validate.py -------------------------------------------------------------------------------- /servicecatalog_factory/commands/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/commands/version.py -------------------------------------------------------------------------------- /servicecatalog_factory/common/serialisation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/common/serialisation_utils.py -------------------------------------------------------------------------------- /servicecatalog_factory/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/common/utils.py -------------------------------------------------------------------------------- /servicecatalog_factory/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/config.py -------------------------------------------------------------------------------- /servicecatalog_factory/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/constants.py -------------------------------------------------------------------------------- /servicecatalog_factory/constants_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/constants_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/empty.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/empty.template.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/environmental_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/environmental_variables.py -------------------------------------------------------------------------------- /servicecatalog_factory/example-config-small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/example-config-small.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/example-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/example-config.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/portfolios/ccoe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/portfolios/ccoe.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/portfolios/example-quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/portfolios/example-quickstart.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/portfolios/example-simple-github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/portfolios/example-simple-github.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/portfolios/example-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/portfolios/example-simple.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/schema/schema-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/schema/schema-apps.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/schema/schema-portfolios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/schema/schema-portfolios.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/schema/schema-stacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/schema/schema-stacks.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/schema/schema-workspaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/schema/schema-workspaces.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/sdk.py -------------------------------------------------------------------------------- /servicecatalog_factory/servicecatalog-factory-initialiser.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/servicecatalog-factory-initialiser.template.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/servicecatalog-factory-regional.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/servicecatalog-factory-regional.template.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/servicecatalog-factory-secondary.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/servicecatalog-factory-secondary.template.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/servicecatalog-factory.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/servicecatalog-factory.template.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/tasks_unit_tests_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/tasks_unit_tests_helper.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/base_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/base_template.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/cdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/cdk/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/cdk/product_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/cdk/product_pipeline.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/cdk/product_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/cdk/product_template.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/cdk/shared_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/cdk/shared_resources.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/build.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/deploy.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/package.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/pipeline_template_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/pipeline_template_builder.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/source.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/test.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/pipeline/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/pipeline/utils.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/product_template_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/product_template_factory.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/product_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/product_templates.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/shared_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/shared_resources.py -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/troposphere_contstants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /servicecatalog_factory/template_builder/troposphere_contstants/codebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/template_builder/troposphere_contstants/codebuild.py -------------------------------------------------------------------------------- /servicecatalog_factory/templates/constraint-launch-role-nested.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/templates/constraint-launch-role-nested.template.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/templates/constraint-launch-role-parent.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/templates/constraint-launch-role-parent.template.yaml -------------------------------------------------------------------------------- /servicecatalog_factory/templates/product-terraform.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/templates/product-terraform.j2 -------------------------------------------------------------------------------- /servicecatalog_factory/templates/static-html-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/templates/static-html-page.html -------------------------------------------------------------------------------- /servicecatalog_factory/templates/terraform.template.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/templates/terraform.template.yaml.j2 -------------------------------------------------------------------------------- /servicecatalog_factory/templates/test-action.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/templates/test-action.j2 -------------------------------------------------------------------------------- /servicecatalog_factory/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/utilities/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/utilities/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/utilities/assets.py -------------------------------------------------------------------------------- /servicecatalog_factory/utilities/assets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/utilities/assets_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/utils.py -------------------------------------------------------------------------------- /servicecatalog_factory/waluigi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/waluigi/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/waluigi/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/waluigi/scheduler.py -------------------------------------------------------------------------------- /servicecatalog_factory/waluigi/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/waluigi/tasks.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/codecommit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/codecommit/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/codecommit/create_code_repo_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/codecommit/create_code_repo_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/codecommit/create_code_repo_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/codecommit/create_code_repo_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/dependencies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/dependencies/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/dependencies/reservable_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/dependencies/reservable_resources.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/dependencies/resources_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/dependencies/resources_factory.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/dependencies/section_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/dependencies/section_names.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/dependencies/task_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/dependencies/task_factory.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/generic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/generic/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/generic/create_generic_version_pipeline_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/generic/create_generic_version_pipeline_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/generic/delete_stack_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/generic/delete_stack_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/__init__.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/associate_product_with_portfolio_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/associate_product_with_portfolio_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/associate_product_with_portfolio_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/associate_product_with_portfolio_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/associate_products_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/associate_products_tasks.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/associate_tag_option_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/associate_tag_option_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_combined_product_pipeline_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_combined_product_pipeline_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_combined_product_pipeline_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_combined_product_pipeline_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_launch_role_name_constraints_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_launch_role_name_constraints_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_portfolio_association_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_portfolio_association_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_portfolio_association_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_portfolio_association_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_portfolio_constraints_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_portfolio_constraints_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_portfolio_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_portfolio_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_portfolio_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_portfolio_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_product_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_product_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_product_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_product_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_tag_option_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_tag_option_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_version_pipeline_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_version_pipeline_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/create_version_pipeline_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/create_version_pipeline_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/delete_a_version_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/delete_a_version_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/delete_a_version_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/delete_a_version_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/delete_product_from_service_catalog_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/delete_product_from_service_catalog_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/delete_product_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/delete_product_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/delete_product_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/delete_product_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/ensure_product_version_details_correct_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/ensure_product_version_details_correct_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/ensure_product_version_details_correct_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/ensure_product_version_details_correct_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/get_bucket_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/get_bucket_task.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/portfolios/get_bucket_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/portfolios/get_bucket_task_test.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/tasks.py -------------------------------------------------------------------------------- /servicecatalog_factory/workflow/tasks_unit_tests_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/servicecatalog_factory/workflow/tasks_unit_tests_helper.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/setup.py -------------------------------------------------------------------------------- /test_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/test_writer.py -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-service-catalog-factory/HEAD/testing/.gitignore --------------------------------------------------------------------------------