Timing of vnet creation and subnet requests #157
positivism1
started this conversation in
General
Replies: 1 comment 1 reply
-
Hi @positivism1, the delay that you're experiencing isn't really a delay in the IPAM tool, however we use Azure Resource Graph to gather details about resources in Azure. I believe the goal is to have 95% of resources in ARG within 1 minute of creation, but some resources can take a bit longer. Here's the official docs on the topic: In my testing, Virtual Networks are generally available in ARG in around 1 minute or less. Hope that helps! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi There!
I am creating a new vnet via api and then immediately requesting the next available subnet via api (NextAvailableSubnet) feeding in the vnet id, obviously this fails because IPAM hasn't picked up the vnet yet. How long do I need to wait for this to happen? Is there an API I can use to check if its happened?
Also having a similiar problem with creating the subnet from NextAvailableSubnet, then immediately running NextAvailableSubnet again and getting the same subnet.
Currently for both of these putting a Start-Sleep -Seconds 360 solves this problem.
Beta Was this translation helpful? Give feedback.
All reactions