Skip to content

Commit d2a8fb6

Browse files
authored
CCM-11863: system tests cis2 client ID in SSM (#739)
1 parent 82602fc commit d2a8fb6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
resource "aws_ssm_parameter" "test_cis2_client_id" {
2+
name = format(
3+
"/%s/test/cis2-int/notify-client-id",
4+
local.csi,
5+
)
6+
description = "Test user client ID"
7+
type = "String"
8+
9+
value = "placeholder"
10+
11+
lifecycle {
12+
ignore_changes = [value]
13+
}
14+
}

0 commit comments

Comments
 (0)