We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1df45cf + 281d09a commit 83cc198Copy full SHA for 83cc198
variables.tf
@@ -51,7 +51,7 @@ variable "github_repositories" {
51
// organization/repository format used by GitHub.
52
condition = length([
53
for repo in var.github_repositories : 1
54
- if length(regexall("^[A-Za-z0-9_.-]+?/[A-Za-z0-9_.-]+$", repo)) > 0
+ if length(regexall("^[A-Za-z0-9_.-]+?/([A-Za-z0-9_.-]+|\\*)$", repo)) > 0
55
]) == length(var.github_repositories)
56
error_message = "Repositories must be specified in the organization/repository format."
57
}
0 commit comments