Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
As described in #40580 updates to the value of
running_mode_auto_stop_timeout_in_minutes
in the resourceaws_workspaces_workspace
are not forwarded to the AWS Go SDK v2.Example configuration of the resource:
running_mode
is set to"AUTO_STOP"
, so that the provider should allow updated torunning_mode_auto_stop_in_minutes
.In the debug logs of a
terraform apply
one can actually find below lineoriginating from this source code.
It seems to be the case that a type conversion to
string
is missing in this code snippettypes.RunningModeAutoStop
should readstring(types.RunningModeAutoStop)
Relations
Closes #40580
References
Output from Acceptance Testing
I am not 100% sure what to add here. I think it should be something like below for running all tests related to workspaces
% make testacc TESTS=TestAccWorkSpaces_serial PKG=workspaces
On my end I executed the test
testAccWorkspace_workspaceProperties_runningModeAutoStopTimeoutInMinutes
, but not other tests/ the whole "suite" because of costs.Please let me know if that`s fine from your end.