Skip to content

Commit

Permalink
Merge pull request #9 from DNXLabs/fix/random_string_resource_numeric…
Browse files Browse the repository at this point in the history
…_input_deprecation

Fix random_string resource numeric input deprecation
  • Loading branch information
brunodasilvalenga committed Oct 11, 2022
2 parents 1fb2f30 + a3a6e06 commit 8b41cfb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ The following resources will be created:
| Name | Version |
|------|---------|
| terraform | >= 0.13.0 |
| random | >= 3.3.0 |

## Providers

| Name | Version |
|------|---------|
| aws | n/a |
| random | n/a |
| random | >= 3.3.0 |

## Inputs

Expand Down
2 changes: 1 addition & 1 deletion event-to-slack-cf.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "random_string" "to_slack_cf_suffix" {
length = 8
special = false
lower = true
number = false
numeric = false
}

resource "aws_cloudformation_stack" "to_slack" {
Expand Down
4 changes: 4 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
terraform {
required_version = ">= 0.13.0"

required_providers {
random = ">= 3.3.0"
}
}

0 comments on commit 8b41cfb

Please sign in to comment.