From b7731991db65c320267f256010c5e201be97e21b Mon Sep 17 00:00:00 2001 From: Erik Kristensen Date: Mon, 30 Sep 2024 17:07:28 -0600 Subject: [PATCH] feat(redshift-snapshot-schedule): add tags --- resources/redshift-snapshot-schedule.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/redshift-snapshot-schedule.go b/resources/redshift-snapshot-schedule.go index 760c363d..52c421a6 100644 --- a/resources/redshift-snapshot-schedule.go +++ b/resources/redshift-snapshot-schedule.go @@ -75,6 +75,9 @@ func (r *RedshiftSnapshotSchedule) Properties() types.Properties { properties := types.NewProperties() properties.Set("ID", r.ID) properties.Set("AssociatedClusters", associatedClusters) + for _, tag := range r.Tags { + properties.SetTag(tag.Key, tag.Value) + } return properties }