add updates for oauth2 proxy
This commit is contained in:
parent
ad06021079
commit
d6a54fbcbc
6 changed files with 34 additions and 25 deletions
6
main.tf
6
main.tf
|
|
@ -32,8 +32,8 @@ variable "drone_github_client_id" {}
|
|||
variable "drone_github_client_secret" {}
|
||||
variable "drone_rpc_secret" {}
|
||||
# variable "dockerhub_password" {}
|
||||
# variable "oauth_client_id" {}
|
||||
# variable "oauth_client_secret" {}
|
||||
variable "oauth2_proxy_client_id" {}
|
||||
variable "oauth2_proxy_client_secret" {}
|
||||
variable "url_shortener_mysql_password" {}
|
||||
variable "url_shortener_geolite_license_key" {}
|
||||
variable "url_shortener_api_key" {}
|
||||
|
|
@ -253,6 +253,8 @@ module "kubernetes_cluster" {
|
|||
drone_rpc_secret = var.drone_rpc_secret
|
||||
|
||||
# Oauth proxy
|
||||
oauth2_proxy_client_id = var.oauth2_proxy_client_id
|
||||
oauth2_proxy_client_secret = var.oauth2_proxy_client_secret
|
||||
# oauth_client_id = var.oauth_client_id
|
||||
# oauth_client_secret = var.oauth_client_secret
|
||||
# depends_on = [module.k8s_master, module.k8s_node1, module.k8s_node2] # wait until master and at least 2 nodes are up
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue