Skip to content

Commit dbbbe3f

Browse files
committed
eli-304 removing / changing code comments
1 parent ac6457e commit dbbbe3f

File tree

1 file changed

+3
-3
lines changed
  • infrastructure/stacks/api-layer

1 file changed

+3
-3
lines changed

infrastructure/stacks/api-layer/ssm.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ resource "aws_ssm_parameter" "splunk_hec_token" {
6969
}
7070

7171
lifecycle {
72-
ignore_changes = [value] # Only ignore value changes, allow key_id updates during migration
72+
ignore_changes = [value] # Needs manual changes in future
7373
}
7474
}
7575

7676
resource "aws_ssm_parameter" "splunk_hec_endpoint" {
7777
name = "/splunk/hec/endpoint"
7878
description = "Splunk HEC endpoint"
7979
type = "SecureString"
80-
key_id = aws_kms_key.splunk_hec_kms.id # Will migrate to customer key after initial creation
80+
key_id = aws_kms_key.splunk_hec_kms.id
8181
value = var.splunk_hec_endpoint
8282
tier = "Advanced"
8383

@@ -89,6 +89,6 @@ resource "aws_ssm_parameter" "splunk_hec_endpoint" {
8989
}
9090

9191
lifecycle {
92-
ignore_changes = [value] # Only ignore value changes, allow key_id updates during migration
92+
ignore_changes = [value]
9393
}
9494
}

0 commit comments

Comments
 (0)