-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now using a central SQS queue to store Cloudformation stack events from each region.
- Loading branch information
1 parent
61e560c
commit 9e33bc2
Showing
11 changed files
with
187 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ aws_service_catalog_puppet.egg-info/ | |
dist | ||
__pycache__ | ||
output | ||
.envrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ def read_from_site_packages(what): | |
return open( | ||
resolve_from_site_packages(what), | ||
'r' | ||
).read() | ||
).read() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
schema: puppet-2019-04-01 | ||
|
||
accounts: | ||
- account_id: '{{ ACCOUNT_ID }}' | ||
name: '{{ ACCOUNT_ID }}' | ||
default_region: eu-west-1 | ||
regions_enabled: | ||
- eu-west-1 | ||
- eu-west-2 | ||
- eu-west-3 | ||
tags: | ||
- type:prod | ||
- partition:eu | ||
- scope:pci | ||
|
||
launches: | ||
devops-iam-for-prod: | ||
portfolio: demo-central-it-team-portfolio | ||
product: account-iam | ||
version: v1 | ||
parameters: | ||
RoleName: | ||
default: DevOps | ||
Path: | ||
default: /human-roles/ | ||
deploy_to: | ||
tags: | ||
- tag: type:prod | ||
regions: default_region | ||
sysops-iam-for-prod: | ||
portfolio: demo-central-it-team-portfolio | ||
product: account-iam | ||
version: v1 | ||
parameters: | ||
RoleName: | ||
default: SysOps | ||
Path: | ||
default: /human-roles/ | ||
deploy_to: | ||
tags: | ||
- tag: type:prod | ||
regions: eu-west-2 | ||
secops-iam-for-prod: | ||
portfolio: demo-central-it-team-portfolio | ||
product: account-iam | ||
version: v1 | ||
parameters: | ||
RoleName: | ||
default: SecOps | ||
Path: | ||
default: /human-roles/ | ||
deploy_to: | ||
tags: | ||
- tag: type:prod | ||
regions: eu-west-3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,4 +76,4 @@ Resources: | |
|
||
Outputs: | ||
Version: | ||
Value: !GetAtt Param.Value | ||
Value: !GetAtt Param.Value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
setuptools.setup( | ||
name="aws-service-catalog-puppet", | ||
version="0.0.41", | ||
version="0.0.42", | ||
author="Eamonn Faherty", | ||
author_email="[email protected]", | ||
description="Making it easier to deploy ServiceCatalog products", | ||
|