-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from KristijanEftimov/main
Documentation improvement
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,16 @@ module "cost_notifier" { | |
cron-expression = "cron(0 7 ? * MON *)" // 9:00AM every Monday | ||
aws-region = "eu-central-1" | ||
sns-endpoint = ["[email protected]", "[email protected]"] | ||
budget-threshold = 100 // By setting up this value, Budgets will be created in AWS, and alarm will be configured to monitor and notify based on predefined thresholds. The sns-endpoint will be notified(alerted) if cost reaches 80% of this value. | ||
budget-threshold = 100 // By setting this variable to a value greater than 0, Budgets will be created in AWS, and an alarm will be set up to monitor and notify based on predefined thresholds. The SNS endpoint(s) will be alerted if costs reach 80% of the threshold value. | ||
} | ||
``` | ||
|
||
|
||
## Budget notifications note | ||
<h3> *By configuring a 'budget-threshold', Budgets will be created in AWS, and an alarm will be set up to monitor and notify based on predefined thresholds. The SNS endpoint(s) will be alerted if costs reach 80% of the threshold value.</h3> | ||
<br/> | ||
|
||
|
||
## Module Input Variables | ||
|
||
| Name | Type | Default | Description | | ||
|