Skip to content

Commit

Permalink
Two spaces for indent in recipes-backend.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathonherbert committed Aug 12, 2024
1 parent 611a6c2 commit 58e63fb
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions cdk/lib/recipes-backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,33 +84,33 @@ export class RecipesBackend extends GuStack {
description: "ARN of the SNS topic to use for data submissions"
});

const faciaSNSTopicARNParam = new GuParameter(this, 'faciaSNSTopicParam', {
default: `/${this.stage}/${this.stack}/${app}/facia-sns-topic-arn`,
fromSSM: true,
description: 'The ARN of the facia-tool SNS topic that emits curation notifications',
});
const faciaSNSTopicARNParam = new GuParameter(this, 'faciaSNSTopicParam', {
default: `/${this.stage}/${this.stack}/${app}/facia-sns-topic-arn`,
fromSSM: true,
description: 'The ARN of the facia-tool SNS topic that emits curation notifications',
});

const faciaPublishStatusSNSTopicParam = new GuParameter(
this,
'faciaPublishStatusSNSTopicParam',
{
default: `/${this.stage}/${this.stack}/${app}/facia-status-sns-topic-arn`,
fromSSM: true,
type: 'String',
description: 'The ARN of the facia-tool SNS topic that receives publication status messages',
},
);
const faciaPublishStatusSNSTopicParam = new GuParameter(
this,
'faciaPublishStatusSNSTopicParam',
{
default: `/${this.stage}/${this.stack}/${app}/facia-status-sns-topic-arn`,
fromSSM: true,
type: 'String',
description: 'The ARN of the facia-tool SNS topic that receives publication status messages',
},
);

const faciaPublishStatusSNSRoleARNParam = new GuParameter(
this,
'faciaPublishStatusSNSTopicRoleParam',
{
default: `/${this.stage}/${this.stack}/${app}/facia-status-sns-topic-role-arn`,
fromSSM: true,
type: 'String',
description: 'The ARN of role that permits us to write to faciaPublishStatusSNSTopic',
},
);
const faciaPublishStatusSNSRoleARNParam = new GuParameter(
this,
'faciaPublishStatusSNSTopicRoleParam',
{
default: `/${this.stage}/${this.stack}/${app}/facia-status-sns-topic-role-arn`,
fromSSM: true,
type: 'String',
description: 'The ARN of role that permits us to write to faciaPublishStatusSNSTopic',
},
);

const contentUrlBase = this.stage === "CODE" ? "recipes.code.dev-guardianapis.com" : "recipes.guardianapis.com";

Expand Down Expand Up @@ -184,10 +184,10 @@ export class RecipesBackend extends GuStack {
serving,
externalParameters,
faciaPublishSNSTopicARN: faciaSNSTopicARNParam.valueAsString,
faciaPublishStatusSNSTopicARN:
faciaPublishStatusSNSTopicParam.valueAsString,
faciaPublishStatusSNSRoleARN:
faciaPublishStatusSNSRoleARNParam.valueAsString,
faciaPublishStatusSNSTopicARN:
faciaPublishStatusSNSTopicParam.valueAsString,
faciaPublishStatusSNSRoleARN:
faciaPublishStatusSNSRoleARNParam.valueAsString,
contentUrlBase
});

Expand Down

0 comments on commit 58e63fb

Please sign in to comment.