Skip to content

Commit

Permalink
chore: sesXX -> emailXX
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneRifle committed Sep 3, 2024
1 parent 38a1d33 commit f8dfb59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/formsg-on-cdk-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,22 +55,22 @@ export class FormsgOnCdkStack extends cdk.Stack {
})


const { valueAsString: sesHost } = new cdk.CfnParameter(this, 'sesHost', {
const { valueAsString: sesHost } = new cdk.CfnParameter(this, 'emailHost', {
type: 'String',
default: 'email-smtp.ap-southeast-1.amazonaws.com',
description: 'The fully-qualified domain name (FQDN) of the SMTP host, or for Simple Email Service (SES).',
})
const { valueAsString: sesPort } = new cdk.CfnParameter(this, 'sesPort', {
const { valueAsString: sesPort } = new cdk.CfnParameter(this, 'emailPort', {
type: 'Number',
default: 465,
description: 'The port for the SMTP host or Simple Email Service (SES).',
})
const { valueAsString: sesUser } = new cdk.CfnParameter(this, 'sesUser', {
const { valueAsString: sesUser } = new cdk.CfnParameter(this, 'emailUser', {
noEcho: true,
type: 'String',
description: 'The SMTP user for Simple Email Service (SES).',
})
const { valueAsString: sesPass } = new cdk.CfnParameter(this, 'sesPass', {
const { valueAsString: sesPass } = new cdk.CfnParameter(this, 'emailPass', {
noEcho: true,
type: 'String',
description: 'The SMTP password for Simple Email Service (SES).',
Expand Down

0 comments on commit f8dfb59

Please sign in to comment.