-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
68 lines (58 loc) · 1.43 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
60
61
62
63
64
65
66
67
68
variable "prefix" {
description = "Prefix for all resources"
type = string
default = "tf"
}
variable "postfix" {
description = "Postfix for all resources"
type = string
default = ""
}
variable "tagkey_prefix" {
description = "Prefix for tag eys"
type = string
default = "gha_"
}
variable "claims_allowlist" {
description = "List of claims of the JWT to be available for conditions (limit 500 bytes)"
type = string
default = <<EOT
repository
run_attempt
run_id
run_number
job_workflow_ref
EOT
}
variable "permitted_github_owner" {
description = "Allow repositories from this GitHub.com org"
type = string
}
variable "domain_name" {
description = "Domain to host on"
type = string
default = ""
}
variable "domain_name_certificate_arn" {
description = "Arn of the certificate used for the domain_name"
type = string
default = ""
}
variable "admin_token_sonarqube" {
description = "Admin token for SonarQube"
type = string
sensitive = true
}
variable "admin_token_artifactory" {
description = "Admin token for Artifactory"
type = string
sensitive = true
}
variable "api_url_sonarqube" {
description = "API URL for SonarQube"
type = string
}
variable "api_url_artifactory" {
description = "API URL for Artifactory"
type = string
}