resource_cloud_project: factorize serviceName discovery and manage possible domain discrepancies #478
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.
resource_cloud_project: factorize serviceName discovery and manage possible domain discrepancies
Description
This PR aims at fixing possible race conditions on cloud project service name discovery.
Context
In some cases, when project has been created through API (Terraform here), order gets messy and despite project being fully created, some order detail items have incorrect domain associated.
(I personally ended up with 5 order details item created, 3 of them having the correct projectId set as domain and 2 of them being set with domain "*001" (i.e. considered as US project).
The current code is naively considering only the first of the detail items as a reference for the project serviceName. Chances are that, based on how items are sorted, you either get a right or bad one (i.e. US one).
Note that even if detected as US-based project, the orderDetailOperations() function calls a /me/order/{orderId}/details/{orderDetailId}/operations web service which exists in US API endpoint but not in EU one (that's not a terraform provider problem here but a real backend issue).
Fix
The PR provides 2 things: