Skip to content

Commit

Permalink
Adds notes on locals.tf to reame
Browse files Browse the repository at this point in the history
  • Loading branch information
dpritchett-rebellion committed May 31, 2021
1 parent 3f2e021 commit 1a96b88
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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)

0 comments on commit 1a96b88

Please sign in to comment.