Skip to content

Commit 7acc22c

Browse files
fix: remove exclamation mark from AWS tag value
AWS tag values cannot contain exclamation marks. Updated target group description tag to comply with AWS validation requirements.
1 parent 5a0cb2a commit 7acc22c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/scenarios/memory-optimization/networking.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ resource "aws_lb_target_group" "app" {
4949

5050
tags = merge(local.common_tags, {
5151
Name = "${local.name_prefix}-tg"
52-
Description = "Target group with ${var.deregistration_delay}s deregistration - NO TIME FOR ROLLBACK!"
52+
Description = "Target group with ${var.deregistration_delay}s deregistration - NO TIME FOR ROLLBACK"
5353

5454
# Risk warning tags
5555
"risk:deregistration-delay" = "${var.deregistration_delay}s"

0 commit comments

Comments
 (0)