29 lines
790 B
Terraform
29 lines
790 B
Terraform
|
|
variable "keycloak_url" {
|
||
|
|
description = "Keycloak URL (set via TF_VAR_keycloak_url)"
|
||
|
|
type = string
|
||
|
|
default = "https://auth.hexor.cy"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "keycloak_client_id" {
|
||
|
|
description = "Keycloak Terraform client ID (set via TF_VAR_keycloak_client_id)"
|
||
|
|
type = string
|
||
|
|
default = "terraform"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "keycloak_client_secret" {
|
||
|
|
description = "Keycloak Terraform client secret (set via TF_VAR_keycloak_client_secret)"
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "google_client_id" {
|
||
|
|
description = "Google OAuth client ID (set via TF_VAR_google_client_id)"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "google_client_secret" {
|
||
|
|
description = "Google OAuth client secret (set via TF_VAR_google_client_secret)"
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|