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
/
vars.tf
65 lines (54 loc) · 1.63 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
variable "kubernetes_atlantis_namespace" {
description = "Namespace to release Atlantis into"
type = string
default = "atlantis"
}
variable "helm_atlantis_chart_version" {
description = "Atlantis helm chart version to use"
type = string
default = ""
}
variable "atlantis_github_user" {
description = "GitHub Atlantis user (see Atlantis installation guide)"
type = string
}
variable "atlantis_github_token" {
description = "GitHub Atlantis user token (see Atlantis installation guide)"
type = string
}
variable "atlantis_webhook_secret" {
description = "GitHub webhook secret (see Atlantis installation guide)"
type = string
}
variable "atlantis_org_whitelist" {
description = "Github org whitelist (see Atlantis installation guide)"
type = string
}
variable "atlantis_host" {
description = "Hostname for Atlantis (will be utilised in ingress if enabled)"
type = string
}
variable "atlantis_ingress_class" {
description = "Ingress class to use for Atlantis"
type = string
default = "nginx"
}
variable "atlantis_ingress_enabled" {
description = "Enable/disable Atlantis ingress"
type = bool
default = true
}
variable "atlantis_ingress_tls_acme_enabled" {
description = "Enable/disable acme TLS for ingress"
type = string
default = "true"
}
variable "atlantis_ingress_tls_secret_name" {
description = "Secret name for Atlantis TLS cert"
type = string
default = "atlantis-cert"
}
variable "eks_iam_atlantis_role_name" {
description = "IAM EKS service account role name for Atlantis"
type = string
}