Skip to content

Commit 743bbb7

Browse files
authored
Merge pull request #2 from 3scale-ops/feat/add-support-for-dots
feat: support dots in tags value
2 parents a662044 + 56e4952 commit 743bbb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ variable "label_order" {
100100

101101
variable "regex_replace_chars" {
102102
type = string
103-
default = "/[^a-zA-Z0-9-]/"
104-
description = "Regex to replace chars with empty string in `project`, `environment` and `workload`. By default only hyphens, letters and digits are allowed, all other chars are removed"
103+
default = "/[^a-zA-Z0-9-.]/"
104+
description = "Regex to replace chars with empty string in `project`, `environment` and `workload`. By default only hyphens, letters, digits and dots are allowed, all other chars are removed"
105105
}
106106

0 commit comments

Comments
 (0)