add cli client for repo
This commit is contained in:
parent
804717ee41
commit
34ec66358a
11 changed files with 340 additions and 1 deletions
|
|
@ -4,6 +4,8 @@ variable "webhook_secret" {}
|
|||
variable "fb_verify_token" {}
|
||||
variable "fb_page_token" {}
|
||||
variable "fb_app_secret" {}
|
||||
variable "git_user" {}
|
||||
variable "git_token" {}
|
||||
|
||||
resource "kubernetes_namespace" "webhook-handler" {
|
||||
metadata {
|
||||
|
|
@ -105,6 +107,14 @@ resource "kubernetes_deployment" "webhook_handler" {
|
|||
name = "CONFIG"
|
||||
value = "./chatbot/config/viktorwebservices.yaml"
|
||||
}
|
||||
env {
|
||||
name = "GIT_USER"
|
||||
value = var.git_user
|
||||
}
|
||||
env {
|
||||
name = "GIT_TOKEN"
|
||||
value = var.git_token
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue