From b86e83df098efd889326108bee61cc3d558ad439 Mon Sep 17 00:00:00 2001 From: DK Benjamin Date: Mon, 21 Oct 2024 14:08:25 -0400 Subject: [PATCH] Enable copying tags to snapshots --- scripts/aws/cloudformation/tasking-manager.template.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/aws/cloudformation/tasking-manager.template.js b/scripts/aws/cloudformation/tasking-manager.template.js index c0760e765f..9c31ce2e0b 100644 --- a/scripts/aws/cloudformation/tasking-manager.template.js +++ b/scripts/aws/cloudformation/tasking-manager.template.js @@ -803,6 +803,7 @@ const Resources = { MasterUserPassword: cf.if('UseASnapshot', cf.noValue, cf.ref('PostgresPassword')), AllocatedStorage: cf.ref('DatabaseDiskSize'), BackupRetentionPeriod: cf.ref('DatabaseSnapshotRetentionPeriod'), + CopyTagsToSnapshot: true, StorageType: 'gp2', DBParameterGroupName: cf.ref('DatabaseParameterGroupName'), EnableCloudwatchLogsExports: ['postgresql'],