From 2bfbdfa8cf939a1d050547519b5aa91a487b14f8 Mon Sep 17 00:00:00 2001 From: Adey Merrett Date: Thu, 22 Nov 2018 15:29:59 +0100 Subject: [PATCH] Add more accurate Slack notify guidance for channel and here --- notify-slack/README.md | 2 +- notify-slack/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/notify-slack/README.md b/notify-slack/README.md index d6a6c6d..ead0980 100644 --- a/notify-slack/README.md +++ b/notify-slack/README.md @@ -9,7 +9,7 @@ It has to be in a file and not simply as a string e.g. `--plaintext 'https://... ## on CodeDeploy failures -- [notify_users]: String (optional) It is possible to use mentions on failues. This is a simple string, e.g. "<@name1> <@name2>" or if the customer requests it, it can simply be "<@channel>". +- [notify_users]: String (optional) It is possible to use mentions on failues. This is a simple string, e.g. "<@name1> <@name2>" or if the customer requests it, it can simply be "" or "". ## Testing diff --git a/notify-slack/variables.tf b/notify-slack/variables.tf index dbe124f..74503d0 100644 --- a/notify-slack/variables.tf +++ b/notify-slack/variables.tf @@ -11,7 +11,7 @@ variable "kms_key_arn" { } variable "notify_users" { - description = "Slack usernames for mentions as a space separated string as '<@name1> <@name2>'" + description = "Slack usernames for mentions as a space separated string as '<@name1> <@name2>' or '' or ''" type = "string" default = "" }