move headscale config to tfvars and change leaked creds[ci skip]

This commit is contained in:
Viktor Barzin 2023-09-15 23:13:19 +00:00
parent fae0f42407
commit 102a082233
2 changed files with 7 additions and 2 deletions

View file

@ -49,6 +49,7 @@ variable "finance_app_oauth_google_client_secret" {}
variable "finance_app_graphql_api_secret" {}
variable "finance_app_gocardless_secret_id" {}
variable "finance_app_gocardless_secret_key" {}
variable "headscale_config" {}
resource "null_resource" "core_services" {
# List all the core modules that must be provisioned first
@ -301,8 +302,9 @@ module "technitium" {
}
module "headscale" {
source = "./headscale"
tls_secret_name = var.tls_secret_name
source = "./headscale"
tls_secret_name = var.tls_secret_name
headscale_config = var.headscale_config
}
# module "metrics_api" {