readd gocardless auth as that is needed to get user requisitions [ci skip]
This commit is contained in:
parent
faaca5f8f0
commit
2adfe2873d
3 changed files with 18 additions and 0 deletions
|
|
@ -6,6 +6,8 @@ variable "graphql_api_secret" {}
|
|||
variable "db_connection_string" {
|
||||
}
|
||||
variable "currency_converter_api_key" {}
|
||||
variable "gocardless_secret_key" {}
|
||||
variable "gocardless_secret_id" {}
|
||||
|
||||
|
||||
resource "kubernetes_namespace" "finance_app" {
|
||||
|
|
@ -131,6 +133,14 @@ resource "kubernetes_deployment" "finance_app" {
|
|||
name = "CURRENCY_CONVERTER_API_KEY"
|
||||
value = var.currency_converter_api_key
|
||||
}
|
||||
env {
|
||||
name = "GOCARDLESS_SECRET_ID"
|
||||
value = var.gocardless_secret_id
|
||||
}
|
||||
env {
|
||||
name = "GOCARDLESS_SECRET_KEY"
|
||||
value = var.gocardless_secret_key
|
||||
}
|
||||
volume_mount {
|
||||
name = "data"
|
||||
mount_path = "/data"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue