forked from bcgov/moh-keycloak-client-configurations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
44 lines (36 loc) · 1.1 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
# KEYCLOAK_DEV
variable "dev_client_id" {
description = "The client_id for the Keycloak client"
default = "terraform"
}
variable "dev_client_secret" {
description = "The client_secret for the Keycloak client"
}
variable "dev_keycloak_url" {
description = "The URL of the Keycloak instance"
default = "https://common-logon-dev.hlth.gov.bc.ca"
}
# KEYCLOAK_TEST
variable "test_client_id" {
description = "The client_id for the Keycloak client in Master Realm"
default = "terraform"
}
variable "test_client_secret" {
description = "The client_secret for the Keycloak client"
}
variable "test_keycloak_url" {
description = "The URL of the Keycloak instance"
default = "https://common-logon-test.hlth.gov.bc.ca"
}
# KEYCLOAK_PROD
variable "prod_client_id" {
description = "The client_id for the Keycloak client in Master Realm"
default = "terraform"
}
variable "prod_client_secret" {
description = "The client_secret for the Keycloak client"
}
variable "prod_keycloak_url" {
description = "The URL of the Keycloak instance"
default = "https://common-logon.hlth.gov.bc.ca"
}