You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to AzureRM provider bug or feature, the name of the resource is known before it is actually created. Therefore terraform cannot build the dependency tree appropriately and it does not wait for dependency to be created.
For example, a key vault data source fails if key vault does not exist yet, even though it is being created by the same plan.
In my opinion, the module should accept and use resource ID instead, which is know after resource creation and therefore allows terraform to build a working dependency tree
The text was updated successfully, but these errors were encountered:
Due to AzureRM provider bug or feature, the name of the resource is known before it is actually created. Therefore terraform cannot build the dependency tree appropriately and it does not wait for dependency to be created.
For example, a key vault data source fails if key vault does not exist yet, even though it is being created by the same plan.
In my opinion, the module should accept and use resource ID instead, which is know after resource creation and therefore allows terraform to build a working dependency tree
The text was updated successfully, but these errors were encountered: