1
-
2
- variable "tags" {
3
- description = " Tags to apply to all resources"
4
- type = map (string )
5
- }
6
-
7
1
variable "destination_account_id" {
8
2
description = " The AWS account ID for the destination account"
9
3
type = string
@@ -14,22 +8,28 @@ variable "destination_bucket_arn" {
14
8
type = string
15
9
}
16
10
17
- variable "stacks_bucket_name " {
18
- description = " The name of the bucket to store the CloudFormation templates "
19
- type = string
20
- default = " cid-cloudformation-templates "
11
+ variable "enable_backup_module " {
12
+ description = " Indicates if the Backup module should be enabled "
13
+ type = bool
14
+ default = true
21
15
}
22
16
23
- variable "stack_name_read_permissions " {
24
- description = " The name of the CloudFormation stack to create the collectors "
25
- type = string
26
- default = " CidDataCollectionReadPermissionsStack "
17
+ variable "enable_budgets_module " {
18
+ description = " Indicates if the Budget module should be enabled "
19
+ type = bool
20
+ default = true
27
21
}
28
22
29
- variable "stack_name_data_exports_source" {
30
- description = " The name of the CloudFormation stack to create the Data Exports"
31
- type = string
32
- default = " CidDataExportsSourceStack"
23
+ variable "enable_compute_optimizer_module" {
24
+ description = " Indicates if the Compute Optimizer module should be enabled"
25
+ type = bool
26
+ default = true
27
+ }
28
+
29
+ variable "enable_compute_optimizization_hub" {
30
+ description = " Indicates if the Compute Optimizization Hub module should be enabled"
31
+ type = bool
32
+ default = false
33
33
}
34
34
35
35
variable "enable_cost_anomaly_module" {
@@ -38,8 +38,8 @@ variable "enable_cost_anomaly_module" {
38
38
default = true
39
39
}
40
40
41
- variable "enable_scad " {
42
- description = " Indicates if the SCAD module should be enabled, only available when Cora enabled"
41
+ variable "enable_ecs_chargeback_module " {
42
+ description = " Indicates if the ECS Chargeback module should be enabled"
43
43
type = bool
44
44
default = false
45
45
}
@@ -50,28 +50,28 @@ variable "enable_health_events_module" {
50
50
default = true
51
51
}
52
52
53
- variable "enable_backup_module " {
54
- description = " Indicates if the Backup module should be enabled"
53
+ variable "enable_inventory_module " {
54
+ description = " Indicates if the Inventory module should be enabled"
55
55
type = bool
56
56
default = true
57
57
}
58
58
59
- variable "enable_budgets_module " {
60
- description = " Indicates if the Budget module should be enabled"
59
+ variable "enable_rds_utilization_module " {
60
+ description = " Indicates if the RDS Utilization module should be enabled"
61
61
type = bool
62
62
default = true
63
63
}
64
64
65
- variable "enable_ecs_chargeback_module " {
66
- description = " Indicates if the ECS Chargeback module should be enabled"
65
+ variable "enable_rightsizing_module " {
66
+ description = " Indicates if the Rightsizing module should be enabled"
67
67
type = bool
68
- default = false
68
+ default = true
69
69
}
70
70
71
- variable "enable_compute_optimizer_module " {
72
- description = " Indicates if the Compute Optimizer module should be enabled"
71
+ variable "enable_scad " {
72
+ description = " Indicates if the SCAD module should be enabled, only available when Cora enabled"
73
73
type = bool
74
- default = true
74
+ default = false
75
75
}
76
76
77
77
variable "enable_tao_module" {
@@ -86,32 +86,31 @@ variable "enable_transit_gateway_module" {
86
86
default = true
87
87
}
88
88
89
- variable "enable_inventory_module " {
90
- description = " Indicates if the Inventory module should be enabled "
91
- type = bool
92
- default = true
89
+ variable "organizational_unit_ids " {
90
+ description = " List of organization units where the read permissions stack will be deployed "
91
+ type = list ( string )
92
+ default = []
93
93
}
94
94
95
- variable "enable_rds_utilization_module " {
96
- description = " Indicates if the RDS Utilization module should be enabled "
97
- type = bool
98
- default = true
95
+ variable "stack_name_data_exports_source " {
96
+ description = " The name of the CloudFormation stack to create the Data Exports "
97
+ type = string
98
+ default = " CidDataExportsSourceStack "
99
99
}
100
100
101
- variable "enable_rightsizing_module " {
102
- description = " Indicates if the Rightsizing module should be enabled "
103
- type = bool
104
- default = true
101
+ variable "stack_name_read_permissions " {
102
+ description = " The name of the CloudFormation stack to create the collectors "
103
+ type = string
104
+ default = " CidDataCollectionReadPermissionsStack "
105
105
}
106
106
107
- variable "enable_compute_optimizization_hub " {
108
- description = " Indicates if the Compute Optimizization Hub module should be enabled "
109
- type = bool
110
- default = false
107
+ variable "stacks_bucket_name " {
108
+ description = " The name of the bucket to store the CloudFormation templates "
109
+ type = string
110
+ default = " cid-cloudformation-templates "
111
111
}
112
112
113
- variable "organizational_unit_ids" {
114
- description = " List of organization units where the read permissions stack will be deployed"
115
- type = list (string )
116
- default = []
113
+ variable "tags" {
114
+ description = " Tags to apply to all resources"
115
+ type = map (string )
117
116
}
0 commit comments