add shlink and parts of dbaas [ci skip]

This commit is contained in:
viktorbarzin 2021-04-17 19:19:04 +01:00
parent b94768f00b
commit 6d5556ca75
5 changed files with 37 additions and 0 deletions

View file

@ -19,6 +19,7 @@ variable "drone_rpc_secret" {}
# variable "dockerhub_password" {}
variable "oauth_client_id" {}
variable "oauth_client_secret" {}
variable "url_shortener_geolite_license_key" {}
variable "webhook_handler_fb_verify_token" {}
variable "webhook_handler_fb_page_token" {}
variable "webhook_handler_fb_app_secret" {}
@ -48,6 +49,11 @@ module "bind" {
named_conf_options = var.bind_named_conf_options
}
module "dbaas" {
source = "./dbaas"
tls_secret_name = var.tls_secret_name
}
module "dnscrypt" {
source = "./dnscrypt"
}
@ -172,6 +178,12 @@ module "reloader" {
source = "./reloader"
}
module "url" {
source = "./url-shortener"
tls_secret_name = var.tls_secret_name
geolite_license_key = var.url_shortener_geolite_license_key
}
module "webhook_handler" {
source = "./webhook_handler"
tls_secret_name = var.tls_secret_name