Skip to content

Releases: appvia/terraform-aws-budgets

v3.0.2

18 May 14:03
8c5931f
Compare
Choose a tag to compare

v3.0.1

18 May 11:14
61d935b
Compare
Choose a tag to compare

Full Changelog: v3.0.0...v3.0.1

v3.0.0

30 Apr 12:25
7f6633c
Compare
Choose a tag to compare

What's Changed

  • feat: dropping the notifications from the module and using an optional sns topic by @gambol99 in #32

Full Changelog: v2.0.0...v3.0.0

v2.0.0

30 Apr 11:59
d09a586
Compare
Choose a tag to compare

What's Changed

  • chore(deps): update tflint plugin terraform-linters/tflint-ruleset-terraform to v0.11.0 by @renovate in #27
  • chore(deps): update tflint plugin terraform-linters/tflint-ruleset-aws to v0.38.0 by @renovate in #26
  • chore(deps): update tflint plugin terraform-linters/tflint-ruleset-terraform to v0.12.0 by @renovate in #28
  • chore(deps): update terraform terraform-aws-modules/sns/aws to v6.1.3 by @renovate in #29
  • chore(deps): update tflint plugin terraform-linters/tflint-ruleset-aws to v0.39.0 by @renovate in #30
  • feat: support providing multiple notifications for a budget by @KashifSaadat in #31

Required Changes

Please note, this is a breaking change. You are now able to provide multiple notifications for each budget being set.

Old:

notification = {
  comparison_operator = "GREATER_THAN"
  threshold           = "100"
  threshold_type      = "PERCENTAGE"
  notification_type   = "ACTUAL"
}

New:

notifications = {
  actual = {
    comparison_operator = "GREATER_THAN"
    threshold           = "100"
    threshold_type      = "PERCENTAGE"
    notification_type   = "ACTUAL"
  }
  forecasted = {
    comparison_operator = "GREATER_THAN"
    threshold           = "90"
    threshold_type      = "PERCENTAGE"
    notification_type   = "FORECASTED"
  }
}

Full Changelog: v1.2.3...v2.0.0

v1.3.0

28 Jan 06:34
e729a8a
Compare
Choose a tag to compare

Full Changelog: v1.2.3...v1.3.0

v1.2.3

27 Jan 18:27
092e0aa
Compare
Choose a tag to compare

Full Changelog: v1.2.2...v1.2.3

v1.2.2

27 Jan 17:55
4968bb9
Compare
Choose a tag to compare

What's Changed

  • chore(deps): update tflint plugin terraform-linters/tflint-ruleset-aws to v0.37.0 by @renovate in #23
  • fix: prevent unintended recreation of budget resource by @danny-molnar in #24

New Contributors

Full Changelog: v1.2.1...v1.2.2

v1.2.1

02 Jan 12:58
Compare
Choose a tag to compare

Full Changelog: v1.2.0...v1.2.1

v1.2.0

02 Jan 10:33
Compare
Choose a tag to compare

What's Changed

  • chore(deps): update terraform terraform-aws-modules/sns/aws to v6.1.2 by @renovate in #21
  • docs: give full url path for images so they load in terraform registry by @KashifSaadat in #22

New Contributors

Full Changelog: v1.1.12...v1.2.0

v1.1.12

24 Dec 12:46
Compare
Choose a tag to compare

Full Changelog: v0.1.11...v1.1.12