Skip to content

Commit

Permalink
Fix random_string resource numeric input deprecation
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Diniz <arthurbdiniz@gmail.com>
  • Loading branch information
arthurbdiniz committed Oct 8, 2022
1 parent 1fb2f30 commit 311f665
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions event-to-slack-cf.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

resource "random_string" "to_slack_cf_suffix" {
count = var.alarm_slack_endpoint != "" ? 1 : 0
length = 8
special = false
lower = true
number = false
count = var.alarm_slack_endpoint != "" ? 1 : 0
length = 8
special = false
lower = true
numeric = false
}

resource "aws_cloudformation_stack" "to_slack" {
Expand Down

0 comments on commit 311f665

Please sign in to comment.