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 5061eb590b
commit fbbc05180d
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
5 changed files with 9 additions and 160 deletions

View file

@ -61,6 +61,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" {}
variable "ansible_prefix" {
default = "ANSIBLE_VAULT_PASSWORD_FILE=~/.ansible/vault_pass.txt ansible-playbook -i playbook/hosts.yaml playbook/linux.yml -t linux/initial_setup"
@ -286,6 +287,8 @@ module "kubernetes_cluster" {
finance_app_db_connection_string = var.finance_app_db_connection_string
finance_app_gocardless_secret_id = var.finance_app_gocardless_secret_id
finance_app_gocardless_secret_key = var.finance_app_gocardless_secret_key
headscale_config = var.headscale_config
}