Skip to content

Commit

Permalink
Migrate tenants
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Woffenden <[email protected]>
  • Loading branch information
jacobwoffenden committed Nov 25, 2024
1 parent 4a68669 commit fe8d815
Showing 1 changed file with 78 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,28 @@ locals {
"analytical-platform" = {
identity_centre_team = "analytical-platform"
aws_accounts = {
"analytical-platform-ingestion-development" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = true
athena_enabled = false
},
"analytical-platform-ingestion-production" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = true
athena_enabled = false
},
"analytical-platform-compute-development" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
amazon_prometheus_query_enabled = true
amazon_prometheus_workspace_id = "ws-bfdd5d7a-5571-4686-bfd4-43ab07cf8d54ba"
xray_enabled = true
athena_enabled = false
},
"analytical-platform-compute-production" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
Expand All @@ -142,6 +157,14 @@ locals {
xray_enabled = true
athena_enabled = false
},
"analytical-platform-compute-test" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
amazon_prometheus_query_enabled = true
amazon_prometheus_workspace_id = "ws-a9d7f576-58b7-4748-b4c1-b02bbdc54a2922"
xray_enabled = true
athena_enabled = false
},
"analytical-platform-production" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
Expand All @@ -152,16 +175,71 @@ locals {
}
}
},
"data-engineering" = {
"identity_centre_team" = "data-engineering",
"aws_accounts" = {
"analytical-platform-data-engineering-sandboxa" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = false
athena_enabled = false
}
}
},
"digital-prison-reporting" = {
"identity_centre_team" = "hmpps-digital-prison-reporting",
"aws_accounts" = {
"digital-prison-reporting-development" = {
cloudwatch_enabled = true
cloudwatch_custom_namespaces = "DPRAgentCustomMetrics,DPRDataReconciliationCustom"
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = false
athena_enabled = false
},
"digital-prison-reporting-preproduction" = {
cloudwatch_enabled = true
cloudwatch_custom_namespaces = "DPRAgentCustomMetrics,DPRDataReconciliationCustom"
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = false
athena_enabled = false
},
"digital-prison-reporting-production" = {
cloudwatch_enabled = true
cloudwatch_custom_namespaces = "DPRAgentCustomMetrics,DPRDataReconciliationCustom"
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = false
athena_enabled = false
},
"digital-prison-reporting-test" = {
cloudwatch_enabled = true
cloudwatch_custom_namespaces = "DPRAgentCustomMetrics,DPRDataReconciliationCustom"
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = false
athena_enabled = false
}
}
},
"digital-studio-operations" = {
"identity_centre_team" = "studio-webops"
"aws_accounts" = {
"nomis-test" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = false
athena_enabled = false
}
"oasys-test" = {
cloudwatch_enabled = true
prometheus_push_enabled = false
amazon_prometheus_query_enabled = false
xray_enabled = false
athena_enabled = false
}
}
},
Expand Down

0 comments on commit fe8d815

Please sign in to comment.