Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit ed7fe7a

Browse files
committed
Allow out-of-band tags for stackset to remain during updates
1 parent 7078064 commit ed7fe7a

File tree

1 file changed

+1
-1
lines changed
  • aws-cloudformation-stackset/src/main/java/software/amazon/cloudformation/stackset/translator

1 file changed

+1
-1
lines changed

aws-cloudformation-stackset/src/main/java/software/amazon/cloudformation/stackset/translator/RequestTranslator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static UpdateStackSetRequest updateStackSetRequest(
122122
Set<Tag> outOfBandTags = new HashSet<>(activeStackSetTags);
123123
outOfBandTags.removeAll(previousTemplateTagSet);
124124

125-
// if the out of band tag doesn't already exist in tagsToSet, add it
125+
// if the out of band tag doesn't already exist in tagsToSet add it
126126
Set<String> templateTagKeys = templateStackSetTags.stream().map(Tag::key).collect(Collectors.toSet());
127127
Set<String> outOfBandTagKeys = outOfBandTags.stream().map(Tag::key).collect(Collectors.toSet());
128128
Map<String, Tag> outOfBandTagMap = getTagMapFromSet(outOfBandTags);

0 commit comments

Comments
 (0)