1
0
Fork 0

feat: initial commit

This commit is contained in:
Vojtěch Mareš 2021-11-27 11:14:20 +01:00
commit b406d732c3
11 changed files with 197 additions and 0 deletions

30
variables.tf Normal file
View file

@ -0,0 +1,30 @@
variable "project_name" {
type = string
}
variable "project_path" {
type = string
}
variable "project_desc" {
type = string
}
variable "project_default_branch" {
type = string
default = "main"
}
variable "project_namespace_id" {
type = string
}
variable "protection_push_access_level" {
type = string
default = "maintainer"
}
variable "protection_merge_access_level" {
type = string
default = "maintainer"
}