-
Notifications
You must be signed in to change notification settings - Fork 545
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: Add support for custom time periods in budget module #738
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @abhisek00
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A last request - I just noticed this relies on provider version 4.28+
We should also update
terraform-google-project-factory/versions.tf
Lines 19 to 27 in 9410ca4
required_providers { | |
google = { | |
source = "hashicorp/google" | |
version = "~> 4.11" | |
} | |
google-beta = { | |
source = "hashicorp/google-beta" | |
version = "~> 4.11" | |
} |
and
terraform-google-project-factory/modules/budget/versions.tf
Lines 20 to 25 in 9410ca4
required_providers { | |
google = { | |
source = "hashicorp/google" | |
version = "~> 4.5" | |
} | |
} |
to use
~> 4.28
@abhisek00 |
Fix for the #729