-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f2e021
commit 1a96b88
Showing
1 changed file
with
13 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 |
---|---|---|
|
@@ -28,6 +28,18 @@ git clone https://github.com/dpritchett/aws-budget-limiter | |
cd aws-budget-limiter | ||
``` | ||
|
||
### Edit main.tf to customize your notification settings | ||
|
||
At the very top of `main.tf` [you'll see the variables that control this budget limiter](main.tf). Tweak the `admin_email` setting so that AWS spend notifications end up in your actual inbox. If the $10 USD default isn't right for you, you can change that here as well. | ||
|
||
```hcl | ||
locals { | ||
max_monthly_spend = "10" | ||
currency = "USD" | ||
admin_email = "[email protected]" | ||
} | ||
``` | ||
|
||
### Initialize your Terraform setup | ||
|
||
Initialize your terraform setup (should only need to do this the first time): | ||
|
@@ -64,4 +76,4 @@ Review your new budget at the [AWS budgets console](https://console.aws.amazon.c | |
|
||
|
||
License: MIT | ||
Contributors: Daniel Pritchett [twitter.com/dpritchett](https://twitter.com/dpritchett) | ||
Contributors: Daniel Pritchett [twitter.com/dpritchett](https://twitter.com/dpritchett) |