Update main.tf

Add Github and Gitlab when using git@ URLs.
pull/308/head
djarbz 10 months ago committed by GitHub
parent 438c904567
commit 21c2608681
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -34,9 +34,15 @@ variable "git_providers" {
"https://github.com/" = {
provider = "github"
},
"git@github.com:" = {
provider = "github"
},
"https://gitlab.com/" = {
provider = "gitlab"
},
"git@gitlab.com:" = {
provider = "gitlab"
},
}
validation {
error_message = "Allowed values for provider are \"github\" or \"gitlab\"."

Loading…
Cancel
Save