-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 disk_size and disk_type for cluster_autoscaling. #1693
feat!: Add support for disk_size and disk_type for cluster_autoscaling. #1693
Conversation
/gcbrun |
/gcbrun |
@@ -243,6 +243,8 @@ variable "cluster_autoscaling" { | |||
gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number })) | |||
auto_repair = bool | |||
auto_upgrade = bool | |||
disk_size = optional(number) | |||
disk_type = optional(string) |
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.
Since we are using optional, could you also update min TF version to >= 1.3
required_version = ">=0.13" |
required_version = ">=0.13" |
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, done.
/gcbrun |
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!
Any idea when 28.0.0 will be released? |
…g. (terraform-google-modules#1693) Co-authored-by: Bharath KKB <[email protected]>
Closes #1588