-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
116 lines (94 loc) · 2.35 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
variable "tenant" {
type = string
description = "XC tenant name where the objects will be created."
}
variable "tenant_suffix" {
type = string
description = "XC tenant unique identifier suffix."
}
variable "namespace" {
type = string
}
variable "sentence_app_virtual_site" {
type = string
default = "sentence-app-vs"
}
variable "nginx_auth_virtual_site" {
type = string
default = "nginx-auth-vs"
}
variable "nginx_plus_oidc_image_server" {
type = string
description = "The image registry server hosting NGINX OIDC image. Example: ghcr.io"
}
variable "nginx_plus_oidc_image_owner" {
type = string
description = "The owner name of the NGINX OIDC image."
}
variable "nginx_plus_oidc_image_name" {
type = string
description = "The name of the NGINX OIDC image. Example: nginx-oidc"
}
variable "nginx_plus_oidc_image_token" {
type = string
description = "The developer token that has permissions to pull the nginx_plus_oidc_image"
sensitive = true
}
variable "project_prefix" {
type = string
default = "nginx-auth"
}
variable "kubeconfig_file" {
type = string
default = "nginx-auth-kubeconfig.yaml"
}
variable "sentence_app_name" {
type = string
default = "demo-sentence"
}
variable "sentence_app_fqdn" {
type = string
}
variable "sentence_frontend_service_name" {
type = string
default = "sentence-frontend-nginx"
}
variable "sentence_frontend_service_port" {
type = number
default = 80
}
variable "sentence_app_region" {
type = string
description = "The string referencing an XC RE to deploy to"
}
variable "nginx_app_name" {
type = string
default = "demo-nginx-auth"
}
variable "nginx_app_fqdn" {
type = string
}
variable "nginx_app_region" {
type = string
description = "The string referencing an XC RE to deploy to"
}
variable "azure_directory_id" {
type = string
description = "The Azure Tenant (directory) ID"
sensitive = true
}
variable "azure_oidc_client_id" {
type = string
description = "The Azure Application (client) ID"
sensitive = true
}
variable "azure_oidc_client_secret" {
type = string
description = "The Azure Client Secret Value"
sensitive = true
}
variable "azure_oidc_hmac_key" {
type = string
description = "The random hmac key phrase"
sensitive = true
}