File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
infrastructure/stacks/development-and-deployment-tools Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ resource "aws_codepipeline" "development_pipeline" {
1919 output_artifacts = [" source_output" ]
2020
2121 configuration = {
22- ConnectionArn = aws_codestarconnections_connection.github .arn
22+ ConnectionArn = aws_codestarconnections_connection.github_nhsdigital .arn
2323 FullRepositoryId = " ${ var . github_owner } /${ var . github_repo } "
2424 BranchName = var.development_pipeline_branch_name
2525 DetectChanges = true
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ resource "aws_codestarconnections_connection" "github" {
33 provider_type = " GitHub"
44}
55
6+ resource "aws_codestarconnections_connection" "github_nhsdigital" {
7+ name = " ${ var . project_id } -${ var . environment } -nhsdigital"
8+ provider_type = " GitHub"
9+ }
10+
611resource "aws_codebuild_source_credential" "github_authenication" {
712 auth_type = " PERSONAL_ACCESS_TOKEN"
813 server_type = " GITHUB"
You can’t perform that action at this time.
0 commit comments