Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
sehrish30 committed May 22, 2023
1 parent ff336c0 commit 15f60af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions external-verification-service/resources/CodePipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CodePipeline:
Repo: !Ref GithubRepository
Branch: !Ref GithubBranch
PollForSourceChanges: false
OAuthToken: ${env:GITHUB_TOKEN} # ${ssm:/secret/dev}
OAuthToken: ${ssm:/secret/dev} # ${ssm:/secret/dev}
OutputArtifacts:
- Name: SourceCode
- Name: Build
Expand Down Expand Up @@ -95,7 +95,7 @@ CodeBuildSourceCredentials:
Properties:
AuthType: PERSONAL_ACCESS_TOKEN
ServerType: GITHUB
Token: ${env:GITHUB_TOKEN} # ${ssm:/secret/dev}
Token: ${ssm:/secret/dev} # ${ssm:/secret/dev}

CodeBuildProject:
Type: AWS::CodeBuild::Project
Expand Down Expand Up @@ -287,7 +287,7 @@ CodePipelineWebHook:
Properties:
Authentication: GITHUB_HMAC
AuthenticationConfiguration:
SecretToken: ${env:GITHUB_TOKEN} # ${ssm:/secret/dev}
SecretToken: ${ssm:/secret/dev} # ${ssm:/secret/dev}
RegisterWithThirdParty: true
Filters:
- JsonPath: "$.ref"
Expand Down

0 comments on commit 15f60af

Please sign in to comment.