Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
comcalvi committed Jun 26, 2023
1 parent c0ac3d6 commit caa6719
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export interface IEcsContainerDefinition extends IConstruct {
*
* @default - no secrets
*/
readonly secrets?: { [envVarName: string] : secretsmanager.ISecret };
readonly secrets?: { [envVarName: string]: secretsmanager.ISecret };

/**
* The user name to use inside the container
Expand Down Expand Up @@ -466,7 +466,7 @@ export interface EcsContainerDefinitionProps {
*
* @default - no secrets
*/
readonly secrets?: { [envVarName: string] : secretsmanager.ISecret };
readonly secrets?: { [envVarName: string]: secretsmanager.ISecret };

/**
* The user name to use inside the container
Expand Down Expand Up @@ -497,7 +497,7 @@ abstract class EcsContainerDefinitionBase extends Construct implements IEcsConta
public readonly linuxParameters?: LinuxParameters;
public readonly logDriverConfig?: ecs.LogDriverConfig;
public readonly readonlyRootFilesystem?: boolean;
public readonly secrets?: { [envVarName: string] : secretsmanager.ISecret };
public readonly secrets?: { [envVarName: string]: secretsmanager.ISecret };
public readonly user?: string;
public readonly volumes: EcsVolume[];

Expand Down Expand Up @@ -560,7 +560,7 @@ abstract class EcsContainerDefinitionBase extends Construct implements IEcsConta
name,
valueFrom: secret.secretArn,
};
}): undefined,
}) : undefined,
mountPoints: Lazy.any({
produce: () => {
if (this.volumes.length === 0) {
Expand Down

0 comments on commit caa6719

Please sign in to comment.