-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
59 lines (54 loc) · 1.46 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
variable "key" {
description = "Repository name"
type = string
}
variable "package_type" {
description = "Repository package type"
type = string
}
variable "repo_layout" {
description = "Repository layout type"
type = map(any)
default = {
"alpine" = "simple-default"
"bower" = "bower-default"
"cargo" = "cargo-default"
"chef" = "simple-default"
"cocoapods" = "simple-default"
"composer" = "composer-default"
"conan" = "conan-default"
"conda" = "simple-default"
"cran" = "simple-default"
"debian" = "simple-default"
"docker" = "simple-default"
"gems" = "simple-default"
"generic" = "simple-default"
"gitlfs" = "simple-default"
"go" = "go-default"
"gradle" = "maven-2-default"
"helm" = "simple-default"
"ivy" = "ivy-default"
"maven" = "maven-2-default"
"npm" = "npm-default"
"nuget" = "nuget-default"
"opkg" = "simple-default"
"puppet" = "puppet-default"
"pypi" = "simple-default"
"rpm" = "simple-default"
"sbt" = "sbt-default"
"vagrant" = "simple-default"
}
}
variable "description" {
description = "Repository description"
type = string
}
variable "email" {
description = "Repository email"
type = string
}
variable "xray_index" {
description = "Indexing in Xray"
type = bool
default = false
}