We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25c9fa0 commit 72fec36Copy full SHA for 72fec36
packages/@aws-cdk/aws-codebuild/lib/project.ts
@@ -567,7 +567,7 @@ export class Project extends ProjectRef {
567
return {
568
type: this.buildImage.type,
569
image: this.buildImage.imageId,
570
- privilegedMode: env.priviledged || false,
+ privilegedMode: env.privileged || false,
571
computeType: env.computeType || this.buildImage.defaultComputeType,
572
environmentVariables: !hasEnvironmentVars ? undefined : Object.keys(vars).map(name => ({
573
name,
@@ -634,7 +634,7 @@ export interface BuildEnvironment {
634
*
635
* @default false
636
*/
637
- priviledged?: boolean;
+ privileged?: boolean;
638
639
/**
640
* The environment variables that your builds can use.
0 commit comments