-
Notifications
You must be signed in to change notification settings - Fork 9.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
[aws_storagegateway_gateway] Allow value of 0 for maintenance_start_time.day_of_week
#34015
Conversation
…time.day_of_week` [hashicorp#26597]
Community NoteVoting for Prioritization
For Submitters
|
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.
Welcome @sodle 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
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.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccStorageGatewayGateway_maintenanceStartTime' PKG=storagegateway ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/storagegateway/... -v -count 1 -parallel 2 -run=TestAccStorageGatewayGateway_maintenanceStartTime -timeout 360m
=== RUN TestAccStorageGatewayGateway_maintenanceStartTime
=== PAUSE TestAccStorageGatewayGateway_maintenanceStartTime
=== CONT TestAccStorageGatewayGateway_maintenanceStartTime
--- PASS: TestAccStorageGatewayGateway_maintenanceStartTime (235.28s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/storagegateway 240.733s
% make testacc TESTARGS='-run=TestAccStorageGatewayGateway_GatewayType_cached' PKG=storagegateway ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/storagegateway/... -v -count 1 -parallel 2 -run=TestAccStorageGatewayGateway_GatewayType_cached -timeout 360m
=== RUN TestAccStorageGatewayGateway_GatewayType_cached
=== PAUSE TestAccStorageGatewayGateway_GatewayType_cached
=== CONT TestAccStorageGatewayGateway_GatewayType_cached
--- PASS: TestAccStorageGatewayGateway_GatewayType_cached (247.76s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/storagegateway 252.831s
@sodle Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.23.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Allows a value of
0
(representing Sunday) for themaintenance_start_time.day_of_week
attribute ofaws_storagegateway_gateway
resources.Previously, a zero value in this field would be converted to null, resulting in an error from AWS when deploying.
Added an acceptance test that validates this case.
Relations
Closes #26597
Output from Acceptance Testing