Skip to content

Commit

Permalink
feat: [PAYMCLOUD-278] Enable cost analysis outside development enviro…
Browse files Browse the repository at this point in the history
…nment (#2843)

Enable cost analysis for non-development environments

Cost analysis is now activated for all environments except development (env_short == "d"). This change ensures better monitoring and budgeting for UAT and PROD. The commented-out line was uncommented to implement this functionality.

Signed-off-by: Fabio Felici <[email protected]>
  • Loading branch information
ffppa authored Feb 28, 2025
1 parent 0faf9fb commit cb27bf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aks-leonardo/03_aks_0.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module "aks_leonardo" {
enable_prometheus_monitor_metrics = var.env_short != "p" ? true : false

# ff: Enabled cost analysis on UAT/PROD
# cost_analysis_enabled = var.env_short != "d" ? true : false
cost_analysis_enabled = var.env_short != "d" ? true : false

#
# 🤖 System node pool
Expand Down

0 comments on commit cb27bf5

Please sign in to comment.