Skip to content

Commit

Permalink
Removed cost_optimization_hub_module (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaljanicki authored Sep 16, 2024
1 parent adb369a commit 67bf08e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ The `terraform-docs` utility is used to generate this README. Follow the below s
| <a name="input_enable_compute_optimizer_module"></a> [enable\_compute\_optimizer\_module](#input\_enable\_compute\_optimizer\_module) | Indicates if the Compute Optimizer module should be enabled | `bool` | `true` | no |
| <a name="input_enable_cost_anomaly_module"></a> [enable\_cost\_anomaly\_module](#input\_enable\_cost\_anomaly\_module) | Indicates if the Cost Anomaly module should be enabled | `bool` | `true` | no |
| <a name="input_enable_cost_intelligence_dashboard"></a> [enable\_cost\_intelligence\_dashboard](#input\_enable\_cost\_intelligence\_dashboard) | Indicates if the Cost Intelligence dashboard should be enabled | `bool` | `true` | no |
| <a name="input_enable_cost_optimization_hub_module"></a> [enable\_cost\_optimization\_hub\_module](#input\_enable\_cost\_optimization\_hub\_module) | Indicates if the Compute Optimization Hub module should be enabled | `bool` | `true` | no |
| <a name="input_enable_cudos_dashboard"></a> [enable\_cudos\_dashboard](#input\_enable\_cudos\_dashboard) | Indicates if the CUDOS dashboard should be enabled | `bool` | `false` | no |
| <a name="input_enable_cudos_v5_dashboard"></a> [enable\_cudos\_v5\_dashboard](#input\_enable\_cudos\_v5\_dashboard) | Indicates if the CUDOS V5 framework should be enabled | `bool` | `true` | no |
| <a name="input_enable_ecs_chargeback_module"></a> [enable\_ecs\_chargeback\_module](#input\_enable\_ecs\_chargeback\_module) | Indicates if the ECS Chargeback module should be enabled | `bool` | `false` | no |
Expand Down
2 changes: 0 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,6 @@ resource "aws_cloudformation_stack" "cudos_read_permissions" {
"IncludeBudgetsModule" = var.enable_budgets_module ? "yes" : "no",
"IncludeComputeOptimizerModule" = var.enable_compute_optimizer_module ? "yes" : "no",
"IncludeCostAnomalyModule" = var.enable_cost_anomaly_module ? "yes" : "no",
"IncludeCostOptimizationHubModule" = var.enable_cost_optimization_hub_module ? "yes" : "no",
"IncludeECSChargebackModule" = var.enable_ecs_chargeback_module ? "yes" : "no",
"IncludeHealthEventsModule" = var.enable_health_events ? "yes" : "no"
"IncludeInventoryCollectorModule" = var.enable_inventory_module ? "yes" : "no",
Expand Down Expand Up @@ -328,7 +327,6 @@ resource "aws_cloudformation_stack" "cudos_data_collection" {
"IncludeBudgetsModule" = var.enable_budgets_module ? "yes" : "no",
"IncludeComputeOptimizerModule" = var.enable_compute_optimizer_module ? "yes" : "no",
"IncludeCostAnomalyModule" = var.enable_cost_anomaly_module ? "yes" : "no",
"IncludeCostOptimizationHubModule" = var.enable_cost_optimization_hub_module ? "yes" : "no",
"IncludeECSChargebackModule" = var.enable_ecs_chargeback_module ? "yes" : "no",
"IncludeHealthEventsModule" = var.enable_health_events ? "yes" : "no"
"IncludeInventoryCollectorModule" = var.enable_inventory_module ? "yes" : "no",
Expand Down
6 changes: 0 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,6 @@ variable "enable_tao_module" {
default = true
}

variable "enable_cost_optimization_hub_module" {
description = "Indicates if the Compute Optimization Hub module should be enabled"
type = bool
default = true
}

variable "enable_compute_optimizer_module" {
description = "Indicates if the Compute Optimizer module should be enabled"
type = bool
Expand Down

0 comments on commit 67bf08e

Please sign in to comment.