-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into enable-enterprise-support-on-creation
- Loading branch information
Showing
15 changed files
with
96 additions
and
84 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
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 |
---|---|---|
|
@@ -36,6 +36,8 @@ pipelines: | |
account_id: 111112233332 # The AWS Account where the source code will be in a CodeCommit Repository | ||
params: | ||
notification_endpoint: [email protected] # Optional | ||
tags: | ||
foo: bar # Pipelines support tagging | ||
targets: | ||
- path: /security | ||
regions: eu-west-1 | ||
|
@@ -442,7 +444,7 @@ Syntax: | |
upload:${style}:${local_path} | ||
# Or, when you would like to choose a specific region: | ||
upload:${style}:${region}:${local_path} | ||
upload:${region}:${style}:${local_path} | ||
``` | ||
|
||
There are five different styles that one could choose from. | ||
|
@@ -470,7 +472,7 @@ There are five different styles that one could choose from. | |
The `region` is optional. | ||
This allows you to upload files to S3 Buckets within specific regions by | ||
adding in the region name as part of the string | ||
(eg. `upload:path:us-west-1:productY/template.yml`). | ||
(eg. `upload:us-west-1:path:productY/template.yml`). | ||
|
||
The `local_path` references the files that you would like to be uploaded from | ||
the location where `adf-build/generate-params.py` scripts gets executed from. | ||
|
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
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
4 changes: 2 additions & 2 deletions
4
src/lambda_codebase/initial_commit/bootstrap_repository/adf-build/requirements.txt
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Install libs here that you might want in AWS CodeBuild (On Master Account) | ||
boto3~=1.10, >=1.10.47 | ||
boto3==1.12.46 | ||
pylint~=2.2.2 | ||
pytest~=3.0.7 | ||
mock~=2.0.0 | ||
pyyaml~=5.1 | ||
astroid~=2.1.0 | ||
six~=1.11.0 | ||
aws-sam-cli==0.22.0 | ||
aws-sam-cli==0.46.2 | ||
pip==19.1.1 |
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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# and then run "tox" from this directory. | ||
|
||
[tox] | ||
envlist = py38 | ||
envlist = py37 | ||
skipsdist = True | ||
|
||
|
||
|