forked from awslabs/aws-deployment-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AWS CodeStar Connections name change to CodeConnections
**Why?** The AWS CodeStar Connection service [changed its name to AWS CodeConnections](https://docs.aws.amazon.com/dtconsole/latest/userguide/rename.html). These changes will need to be made sooner or later. Since they would introduce breaking changes, this PR adds the name change so we can push it as part of the v4.0.0 release. **What?** * Renamed AWS CodeStar Connections to AWS CodeConnections. * Removed the GitHub source provider, as this was superseded by CodeStar Connections back in the day. With the upcoming major release, it would be a good time to sunset that legacy provider. * Added a CHANGELOG.md file, to track the breaking changes we introduce. I added all releases since v3.0.0, so the changes and release notes are readable in forks of ADF as well. * Removed SecretsManager permissions to AWS CodeBuild as these are not in use.
- Loading branch information
Showing
18 changed files
with
816 additions
and
307 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -89,18 +89,25 @@ pipelines: | |
- name: vpc | ||
default_providers: | ||
source: | ||
provider: github | ||
provider: codeconnections | ||
properties: | ||
# Optional, name property will be used if repository is not specified | ||
repository: my-github-vpc | ||
# Who owns this Github Repository | ||
owner: bundyfx | ||
# The path in AWS Secrets Manager that holds the GitHub Oauth token, | ||
# ADF only has access to /adf/ prefix in Secrets Manager | ||
oauth_token_path: /adf/github_token | ||
# The field (key) name of the json object stored in AWS Secrets | ||
# Manager that holds the Oauth token | ||
json_field: token | ||
owner: awslabs | ||
# The path in Amazon Systems Manager Parameter Store that holds the | ||
# Connections Arn. | ||
# Please note, by default ADF only has access to read /adf/ | ||
# parameters. You need to create this parameter manually | ||
# in the deployment region in the deployment account once. | ||
# | ||
# It is recommended to add a Tag like CreatedBy with the user that | ||
# created it. So it is clear this parameter is not managed by ADF | ||
# itself. | ||
# | ||
# Example content of the parameter, plain ARN as a simple string: | ||
# arn:aws:codeconnections:eu-west-1:111111111111:connection/11111111-2222-3333-4444-555555555555 | ||
codeconnections_param_path: /adf/my_github_connection_arn_param | ||
params: | ||
notification_endpoint: [email protected] | ||
targets: | ||
|
@@ -384,12 +391,11 @@ pipelines: | |
- name: my-web-app-pipeline | ||
default_providers: | ||
source: | ||
provider: github | ||
provider: codeconnections | ||
properties: | ||
repository: my-web-app | ||
owner: cool_coder | ||
oauth_token_path: /adf/github_token | ||
json_field: token | ||
codeconnections_param_path: /adf/my_github_connection_arn_param | ||
targets: | ||
- path: /banking/testing | ||
name: web-app-testing | ||
|
Oops, something went wrong.