[DATALAB-2125]: added wait time
diff --git a/infrastructure-provisioning/src/general/lib/gcp/actions_lib.py b/infrastructure-provisioning/src/general/lib/gcp/actions_lib.py
index 77a9adb..d1a53a6 100644
--- a/infrastructure-provisioning/src/general/lib/gcp/actions_lib.py
+++ b/infrastructure-provisioning/src/general/lib/gcp/actions_lib.py
@@ -103,6 +103,7 @@
             while not allow and count < 5:
                 result = request.execute()
                 datalab.meta_lib.GCPMeta().wait_for_operation(result['name'])
+                time.sleep(5)
                 if datalab.meta_lib.GCPMeta().get_vpc(vpc_name) == '':
                     allow = True
                 else: