22 lines
284 B
Terraform
22 lines
284 B
Terraform
|
variable "tailscale_authkey" {
|
||
|
type = string
|
||
|
sensitive = true
|
||
|
}
|
||
|
|
||
|
variable "oidc_username" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "oidc_password" {
|
||
|
type = string
|
||
|
sensitive = true
|
||
|
}
|
||
|
|
||
|
variable "oidc_client_id" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "oidc_issuer_url" {
|
||
|
type = string
|
||
|
}
|