Skip to content

Commit

Permalink
Merge pull request #190 from isomerpages/staging
Browse files Browse the repository at this point in the history
Create eponline.mom.gov.sg.ts
  • Loading branch information
mergify[bot] authored Aug 1, 2024
2 parents e618501 + 65cd12f commit ce25912
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions dns/eponline.mom.gov.sg.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import { Record } from "@pulumi/aws/route53";
import { CLOUDFRONT_HOSTED_ZONE_ID } from "../constants";

export const createRecords = (zoneId: string): Record[] => {
const records = [
new Record("eponline.mom.gov.sg A", {
name: "eponline-mom-gov-sg",
type: "A",
zoneId: zoneId,
aliases: [
{
name: "d3jvun56jcyu3k.cloudfront.net",
zoneId: CLOUDFRONT_HOSTED_ZONE_ID,
evaluateTargetHealth: false,
},
],
}),

new Record("eponline.mom.gov.sg AAAA", {
name: "eponline-mom-gov-sg",
type: "AAAA",
zoneId: zoneId,
aliases: [
{
name: "d3jvun56jcyu3k.cloudfront.net",
zoneId: CLOUDFRONT_HOSTED_ZONE_ID,
evaluateTargetHealth: false,
},
],
}),
];

return records;
};

0 comments on commit ce25912

Please sign in to comment.