add env env variable to finance app to know if prod or not [ci skip]
This commit is contained in:
parent
05944f716e
commit
e42802ec5e
3 changed files with 16 additions and 0 deletions
|
|
@ -95,6 +95,10 @@ resource "kubernetes_deployment" "finance_app" {
|
|||
name = "finance-app"
|
||||
image_pull_policy = "Always"
|
||||
|
||||
env {
|
||||
name = "ENVIRONMENT"
|
||||
value = "prod"
|
||||
}
|
||||
env {
|
||||
name = "DB_CONNECTION_STRING"
|
||||
value = var.db_connection_string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue