Skip to content

Commit

Permalink
cdk out issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Kedharkb committed Mar 14, 2024
1 parent 1400970 commit 7249e0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions infrastructure/lib/infrastructure-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ export class InfrastructureStack extends cdk.Stack {
const secret = sm.Secret.fromSecretAttributes(this, "ImportedSecret", {
secretCompleteArn: "arn:aws:secretsmanager:eu-central-1:381492264897:secret:github-token-AzXgoT"
});

const pipeline = new CodePipeline(this, 'Pipeline', {
pipelineName: 'WorkshopPipeline',
new CodePipeline(this, 'Pipeline', {
pipelineName: 'aws-app',
synth: new ShellStep('SynthStep', {
input: CodePipelineSource.gitHub(
`kedharkb/aws-app`,
`Kedharkb/aws-app`,
'master',
{
authentication:secret.secretValue
}
),
primaryOutputDirectory: "infrastructure/cdk.out",
commands: [
'cd infrastructure',
'npm ci',
Expand Down

0 comments on commit 7249e0d

Please sign in to comment.