Skip to content

Commit 0e9ccc3

Browse files
committed
Fixed naming
1 parent 7f37543 commit 0e9ccc3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

infrastructure-cdk/lib/application-pipeline-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export class ApplicationPipelineStack extends Stack {
88
constructor(scope: Construct, id: string, props?: StackProps) {
99
super(scope, id, props);
1010

11-
const artifactBucket = new Bucket(this, 'ArtefactBucket', {
11+
const artifactBucket = new Bucket(this, 'ArtifactBucket', {
1212
blockPublicAccess: BlockPublicAccess.BLOCK_ALL,
1313
enforceSSL: true,
1414
encryption: BucketEncryption.S3_MANAGED,

infrastructure-cdk/lib/constructs/java-build-pipeline.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ export class JavaBuildPipeline extends Construct {
9999
input: sourceAsset, actionName: "CodeBuild", project: project, outputs: [buildOutput]
100100
})]
101101
}, {
102-
stageName: "saveArtefact", actions: [new S3DeployAction({
102+
stageName: "saveArtifact", actions: [new S3DeployAction({
103103
bucket: props.deployBucket,
104-
actionName: "SaveArtefact",
104+
actionName: "SaveArtifact",
105105
input: buildOutput,
106106
extract: true
107107
})]

0 commit comments

Comments
 (0)