Skip to content

Commit 8bb8cc3

Browse files
authored
Update deploy.py to add '-' in subnet name with uuid
1 parent 500b3ab commit 8bb8cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

healthcheck/testtools/deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def create_vnet(credentials,
103103
for i in range(1, len(subnets_cidr) + 1):
104104

105105
# Create Subnet
106-
subnet_name = "subnet_" + str(i) + "_" + str(uuid.uuid4())
106+
subnet_name = "subnet_" + str(i) + "-" + str(uuid.uuid4())
107107
async_subnet_creation = network_client.subnets.create_or_update(
108108
resource_name_vnet,
109109
vnet_name,

0 commit comments

Comments
 (0)