This repository has been archived on 2023-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
cloud-resources/aws-budget.tf

16 lines
465 B
HCL

resource "aws_budgets_budget" "aws-budget" {
name = "budget-monthly"
budget_type = "COST"
limit_amount = "5"
limit_unit = "USD"
time_unit = "MONTHLY"
notification {
comparison_operator = "GREATER_THAN"
threshold = 85
threshold_type = "PERCENTAGE"
notification_type = "FORECASTED"
subscriber_email_addresses = ["tormakristof@tormakristof.eu"]
}
}