Skip to content

Commit

Permalink
add necessary secrets in tf
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-s-nava committed Dec 10, 2024
1 parent eca2963 commit 26e5fe7
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion infra/frontend/app-config/env-config/environment-variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,27 @@ locals {
NEW_RELIC_LICENSE_KEY = {
manage_method = "manual"
secret_store_name = "/new-relic-license-key"
}
},
NEW_RELIC_ACCOUNT_ID = {
manage_method = "manual"
secret_store_name = "/${var.app_name}/${var.environment}/new-relic-account-id"
},
NEW_RELIC_TRUST_KEY = {
manage_method = "manual"
secret_store_name = "/${var.app_name}/${var.environment}/new-relic-trust-key"
},
NEW_RELIC_AGENT_ID = {
manage_method = "manual"
secret_store_name = "/${var.app_name}/${var.environment}/new-relic-agent-id"
},
NEW_RELIC_CLIENT_LICENSE_KEY = {
manage_method = "manual"
secret_store_name = "/${var.app_name}/${var.environment}/new-relic-client-license-key"
},
NEW_RELIC_APPLICATION_ID = {
manage_method = "manual"
secret_store_name = "/${var.app_name}/${var.environment}/new-relic-application-id"
},

}
}

0 comments on commit 26e5fe7

Please sign in to comment.