From 89fd64f9eab2f7b50c8e442fe13873e94e419de5 Mon Sep 17 00:00:00 2001 From: "Sven Aelterman.Info" <82607863+SvenAeltermanInfo@users.noreply.github.com> Date: Tue, 22 Mar 2022 16:40:12 -0500 Subject: [PATCH] Fix typo `subneyId` -> `subnetId` --- samples/network/network_base_example.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/network/network_base_example.ts b/samples/network/network_base_example.ts index 606da05..319a108 100644 --- a/samples/network/network_base_example.ts +++ b/samples/network/network_base_example.ts @@ -60,7 +60,7 @@ async function create_network_interface( networkInterfaceName: any, ipconfig: any ) { - const subneyId = + const subnetId = "/subscriptions/" + subscriptionId + "/resourceGroups/" + @@ -74,7 +74,7 @@ async function create_network_interface( networkInterfaceName, { location: location, - ipConfigurations: [{ name: ipconfig, subnet: { id: subneyId } }], + ipConfigurations: [{ name: ipconfig, subnet: { id: subnetId } }], } ); console.log(networkInterface_create);