Skip to content

Commit

Permalink
fix: correcting ordering of variables
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Baker <[email protected]>
  • Loading branch information
PeterBaker0 committed Aug 28, 2024
1 parent 410ea9b commit b757f29
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions infrastructure/aws-cdk/lib/components/conductor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ export class FaimsConductor extends Construct {
constructor(scope: Construct, id: string, props: FaimsConductorProps) {
super(scope, id);

// OUTPUTS
// ================

// Build the public URL and expose
this.conductorEndpoint = `https://${props.domainName}:${this.externalPort}`;

// AUXILIARY SETUP
// ================

Expand Down Expand Up @@ -302,11 +308,5 @@ export class FaimsConductor extends Construct {
ec2.Port.tcp(this.internalPort),
'Allow traffic from ALB to Conductor Fargate Service'
);

// OUTPUTS
// ================

// Build the public URL and expose
this.conductorEndpoint = `https://${props.domainName}:${this.externalPort}`;
}
}

0 comments on commit b757f29

Please sign in to comment.