Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DCES-598 Secret names consistency step 1 #27877

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module "secrets_manager" {
k8s_secret_name = "dces-datasource"
}
"dces-drc-integration-service-alert-webhook-dev" = {
description = "[laa-dces-drc-integration-dev/dces-drc-integration-service-alert-webhook-dev] Slack webhook"
description = "[dces-drc-integration-service-alert-webhook-dev] Slack webhook"
recovery_window_in_days = 7
k8s_secret_name = "dces-drc-integration-service-alert-webhook-dev"
}
Expand All @@ -46,9 +46,34 @@ module "secrets_manager" {
k8s_secret_name = "maat-api-oauth-client-secret"
}
"config-variables" = {
description = "[laa-dces-drc-integration-dev/config-variables] Configuration variables and settings"
description = "[config-variables] Overridden configuration env-vars"
recovery_window_in_days = 7
k8s_secret_name = "config-variables"
}
"client-ca" = {
description = "[client-ca] Client CA certificate file for mTLS client certificate validation"
recovery_window_in_days = 7
k8s_secret_name = "client-ca"
}
"datasource" = {
description = "[datasource] Database connection env-vars"
recovery_window_in_days = 7
k8s_secret_name = "datasource"
}
"drc-client" = {
description = "[drc-client] Debt recovery company client credential files and env-vars"
recovery_window_in_days = 7
k8s_secret_name = "drc-client"
}
"feature-flags" = {
description = "[feature-flags] Feature flag env-vars"
recovery_window_in_days = 7
k8s_secret_name = "feature-flags"
}
"maat-cd-api" = {
description = "[maat-cd-api] MAAT court data API client credential env-vars"
recovery_window_in_days = 7
k8s_secret_name = "maat-cd-api"
}
}
}
Loading