Skip to content

Releases: mineiros-io/terraform-google-billing-budget

v0.1.0

12 Oct 10:16
cae3cfa
Compare
Choose a tag to compare

Changed

  • Change threshold_rules from required to optional

  • BREAKING CHANGE: Change amount from optional to required and to original resource structure.

    old format
    ...
    amount          = 1000
    currency_code   = "EUR"
    
    use_last_period_amount = false
    ...
    
    new format
    ...
    amount = {
      specified_amount = {
        currency_code = "EUR"
        units         = 1000
      }
    }
    ...
    

    or

    amount = {
      last_period_amount = true
    }
    
  • Upgrade minimum supported provider version to v4.30 since it threshold_values isn't a required variable anymore. For details please see https://github.com/hashicorp/terraform-provider-google/blob/main/CHANGELOG.md#4300-july-25-2022

Removed

  • BREAKING CHANGE: Remove variable currency_code
  • BREAKING CHANGE: Remove variable use_last_period_amount

Fixed

  • Fix budget_filter example in README.md

v0.0.3

16 Feb 22:40
e480960
Compare
Choose a tag to compare

0.0.3

Changed

v0.0.2

17 Dec 12:31
0e68099
Compare
Choose a tag to compare

Changelog

Added

  • Implement support for the last_period_amount argument.

Changed

  • Make the amount variable optional.

v0.0.1

14 Dec 12:35
24a1c60
Compare
Choose a tag to compare
v0.0.1 Pre-release
Pre-release

Changelog

Added

  • Implement support for the google_billing_budget resource