This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
71 lines (59 loc) · 1.79 KB
/
vars.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
69
70
71
variable "drone_namespace" {
description = "Namespace to release Drone into"
type = string
default = "drone"
}
variable "drone_helm_chart_version" {
description = "Drone helm chart version to use"
type = string
default = ""
}
variable "drone_server_host" {
description = "Hostname for Drone (will be utilised in ingress if enabled)"
type = string
}
variable "drone_server_proto" {
description = "Protocol for Drone (Either http or https)"
type = string
default = "https"
}
variable "drone_rpc_secret" {
description = "Unique shared secret (see Drone installation guide)"
type = string
}
variable "drone_github_client_id" {
description = "GitHub OAuth application client id (see Drone installation guide)"
type = string
}
variable "drone_github_client_secret" {
description = "GitHub OAuth application client secret (see Drone installation guide)"
type = string
}
variable "drone_user_create" {
description = "Primary admin account to create (see Drone administrators guide)"
type = string
}
variable "drone_user_filter" {
description = "Filter scope for permitted registrations, i.e. your organisation name (see Drone registrations guide)"
type = string
}
variable "drone_ingress_class" {
description = "Ingress class to use for Drone"
type = string
default = "nginx"
}
variable "drone_ingress_enabled" {
description = "Enable/disable Drone ingress"
type = bool
default = true
}
variable "drone_ingress_tls_acme_enabled" {
description = "Enable/disable acme TLS for ingress"
type = string
default = "true"
}
variable "drone_ingress_tls_secret_name" {
description = "Secret name for Drone TLS cert"
type = string
default = "drone-cert"
}