Skip to content

Commit 4f85156

Browse files
committed
mark incoming slack urls as non-sensetive so they could be joined into one list
Signed-off-by: Andrey Devyatkin <andrey.devyatkin@fivexl.io>
1 parent 6f5b8f9 commit 4f85156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ resource "aws_cloudwatch_event_target" "target" {
4747
}
4848

4949
locals {
50-
hook_urls = concat([var.slack_hook_url], var.additional_slack_hook_urls)
50+
hook_urls = concat([nonsensitive(var.slack_hook_url)], nonsensitive(var.additional_slack_hook_urls))
5151
}

0 commit comments

Comments
 (0)