-
Notifications
You must be signed in to change notification settings - Fork 14
/
variables.tf
83 lines (69 loc) · 1.78 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
variable "humanitec_org_id" {
description = "Humanitec Organization ID"
type = string
default = null
}
variable "aws_account_id" {
description = "AWS Account (ID) to use"
type = string
}
variable "kubeconfig" {
description = "Path to your kubeconfig file"
type = string
}
variable "kubectx" {
description = "The context to use from your kubeconfig to connect Terraform providers to the cluster"
type = string
}
variable "aws_region" {
description = "AWS region"
type = string
}
variable "environment" {
description = "Environment"
type = string
default = "development"
}
variable "apiserver" {
description = "The API server URL of your OpenShift cluster"
type = string
}
variable "basedomain" {
description = "Base domain"
type = string
}
variable "with_backstage" {
description = "Deploy Backstage"
type = bool
default = false
}
variable "with_rhdh" {
description = "Deploy Red Hat Developer Hub"
type = bool
default = false
}
variable "github_org_id" {
description = "GitHub org id (required for Backstage and RHDH)"
type = string
default = null
}
variable "with_argocd" {
description = "Deploy ArgoCD"
type = bool
default = false
}
variable "github_manifests_username" {
description = "GitHub username to pull & push manifests (required for ArgoCD)"
type = string
default = null
}
variable "github_manifests_password" {
description = "GitHub password to pull & push manifests (required for ArgoCD)"
type = string
default = null
}
variable "github_manifests_repo" {
description = "GitHub repository for manifests (required for ArgoCD)"
type = string
default = "humanitec-app-manifests"
}