Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.
Debugs shows that terraform receives a XML response from Azure Storage which contains states for listed workspaces. There is NextMarker in response which indicates that there should be followup request happening to Azure Storage but Terraform does not request next page which has the most of the states. This can be verified with trace debugging where there is no second request generated and only workspaces from page 1 get listed.
Terraform Version
Terraform Configuration Files
Debug Output
Debugs shows that terraform receives a XML response from Azure Storage which contains states for listed workspaces. There is NextMarker in response which indicates that there should be followup request happening to Azure Storage but Terraform does not request next page which has the most of the states. This can be verified with trace debugging where there is no second request generated and only workspaces from page 1 get listed.
Sanitized version of XML returned.
Expected Behavior
All the workspaces from all pages get listed and terraform follows NextMarker until there is not one defined in response (last page).
Actual Behavior
Only states listed in page 1 get listed by terraform and NextMarker provided in response is not followed.
Steps to Reproduce
Additional Context
No response
References
30853