From a7fc90bc0b93cce7583c93710aaef90883382d55 Mon Sep 17 00:00:00 2001 From: Warren Parad Date: Thu, 16 Oct 2025 17:10:03 +0200 Subject: [PATCH] Remove low TTL values. --- template/cloudFormationWebsiteTemplate.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/template/cloudFormationWebsiteTemplate.js b/template/cloudFormationWebsiteTemplate.js index 976d00c..72a4f3d 100644 --- a/template/cloudFormationWebsiteTemplate.js +++ b/template/cloudFormationWebsiteTemplate.js @@ -187,11 +187,6 @@ const stackProvider = { } }; - // Temporarily set these values to be small so that we do not break anything. Later after fully migrating we can remove this and restore the correct values. - Object.values(stack.Resources).filter(r => r.Type === 'AWS::Route53::RecordSet').map(r => { - r.Properties.TTL = '300'; - }); - return stack; } };