Skip to content

Commit

Permalink
set default values (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdaniluk authored Aug 14, 2024
1 parent 6fb22d2 commit 6068ce8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ We open source the vast majority of the resources we use to deliver our managed
| <a name="input_datadog_api_key_secret_arn"></a> [datadog\_api\_key\_secret\_arn](#input\_datadog\_api\_key\_secret\_arn) | ARN of the AWS Secret containing the Datadog API key | `string` | n/a | yes |
| <a name="input_enable_cur_collection"></a> [enable\_cur\_collection](#input\_enable\_cur\_collection) | Enable Cost and Usage Report collection for aggregation in a QuickSight CUDOS project. Be mindful of existing CUR collection processes before enabling. | `bool` | `false` | no |
| <a name="input_enable_datadog_cost_management"></a> [enable\_datadog\_cost\_management](#input\_enable\_datadog\_cost\_management) | Enable Datadog cost management | `bool` | `false` | no |
| <a name="input_expiring_sps_and_ris_alert_exp"></a> [expiring\_sps\_and\_ris\_alert\_exp](#input\_expiring\_sps\_and\_ris\_alert\_exp) | Alert expiration threshold for SPs and RIs | `number` | n/a | yes |
| <a name="input_expiring_sps_and_ris_warning_exp"></a> [expiring\_sps\_and\_ris\_warning\_exp](#input\_expiring\_sps\_and\_ris\_warning\_exp) | Warning expiration threshold for SPs and RIs | `number` | n/a | yes |
| <a name="input_expiring_sps_and_ris_alert_exp"></a> [expiring\_sps\_and\_ris\_alert\_exp](#input\_expiring\_sps\_and\_ris\_alert\_exp) | Alert expiration threshold for SPs and RIs | `number` | `7` | no |
| <a name="input_expiring_sps_and_ris_warning_exp"></a> [expiring\_sps\_and\_ris\_warning\_exp](#input\_expiring\_sps\_and\_ris\_warning\_exp) | Warning expiration threshold for SPs and RIs | `number` | `30` | no |
| <a name="input_monitor_ri_utilization"></a> [monitor\_ri\_utilization](#input\_monitor\_ri\_utilization) | Enable monitoring of Reserved Instances Utilization | `bool` | `false` | no |
| <a name="input_monitor_sp_utilization"></a> [monitor\_sp\_utilization](#input\_monitor\_sp\_utilization) | Enable monitoring of Savings Plan Utilization | `bool` | `false` | no |
| <a name="input_name_prefix"></a> [name\_prefix](#input\_name\_prefix) | Prefix for all resource names | `string` | `"rhythmic-"` | no |
Expand Down
2 changes: 2 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,13 @@ variable "cur_forwarding_bucket_arn" {
# Expiring SPs and RIs vars
#######################################
variable "expiring_sps_and_ris_warning_exp" {
default = 30
description = "Warning expiration threshold for SPs and RIs"
type = number
}

variable "expiring_sps_and_ris_alert_exp" {
default = 7
description = "Alert expiration threshold for SPs and RIs"
type = number
}

0 comments on commit 6068ce8

Please sign in to comment.