Skip to content

Commit 2927a32

Browse files
authored
Merge pull request #231735 from v-thepet/rollback
Freshness: Roll back vnet creation and connect to GA version
2 parents 3dfdd7a + d9e3a54 commit 2927a32

File tree

9 files changed

+55
-17
lines changed

9 files changed

+55
-17
lines changed
-66.2 KB
Loading
-66.2 KB
Loading
66.2 KB
Loading
63.4 KB
Loading
35.2 KB
Loading

articles/virtual-network/quick-create-bicep.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -190,15 +190,13 @@ Get-AzResource -ResourceGroupName TestRG
190190

191191
## Connect to a VM
192192

193-
1. In the [Azure portal](https://portal.azure.com), search for and select **Virtual machines**.
193+
1. In the portal, search for and select **Virtual machines**.
194194

195195
1. On the **Virtual machines** page, select **BackendVM1**.
196196

197-
1. At the top of the **BackendVM1** page, select **Connect**.
197+
1. At the top of the **BackendVM1** page, select the dropdown arrow next to **Connect**, and then select **Bastion**.
198198

199-
1. On the **Connect** page, select **More ways to connect**, and then select **Go to Bastion**.
200-
201-
:::image type="content" source="./media/quick-create-bicep/connect-to-virtual-machine.png" alt-text="Screenshot of connecting to BackendVM1 with Azure Bastion." border="true":::
199+
:::image type="content" source="./media/quick-create-bicep/connect-to-virtual-machine.png" alt-text="Screenshot of connecting to VM1 with Azure Bastion." border="true":::
202200

203201
1. On the **Bastion** page, enter the username and password you created for the VM, and then select **Connect**.
204202

articles/virtual-network/quick-create-cli.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,11 @@ The VMs take a few minutes to create. After Azure creates each VM, Azure CLI ret
129129
130130
## Connect to a VM
131131

132-
1. In the [Azure portal](https://portal.azure.com), search for and select **Virtual machines**.
132+
1. In the portal, search for and select **Virtual machines**.
133133

134134
1. On the **Virtual machines** page, select **VM1**.
135135

136-
1. At the top of the **VM1** page, select **Connect**.
137-
138-
1. On the **Connect** page, select **More ways to connect**, and then select **Go to Bastion**.
136+
1. At the top of the **VM1** page, select the dropdown arrow next to **Connect**, and then select **Bastion**.
139137

140138
:::image type="content" source="./media/quick-create-portal/connect-to-virtual-machine.png" alt-text="Screenshot of connecting to VM1 with Azure Bastion." border="true":::
141139

articles/virtual-network/quick-create-portal.md

Lines changed: 48 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,53 @@ A virtual network is the fundamental building block for private networks in Azur
2424

2525
- An Azure account with an active subscription. You can [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
2626

27-
[!INCLUDE [virtual-networks-quick-create-portal.md](../../includes/virtual-networks-quick-create-portal.md)]
27+
## Create a virtual network
28+
29+
The following procedure creates a virtual network with a resource subnet, an Azure Bastion subnet, and an Azure Bastion host.
30+
31+
1. Sign in to the [Azure portal](https://portal.azure.com).
32+
33+
1. In the portal, search for and select **Virtual networks**.
34+
35+
1. On the **Virtual networks** page, select **Create**.
36+
37+
1. On the **Basics** tab of the **Create virtual network** screen, enter or select the following information:
38+
39+
- **Subscription**: Keep the default or select a different subscription.
40+
- **Resource group**: Select **Create new**, and then name the resource group *TestRG*.
41+
- **Virtual network name**: Enter *VNet*.
42+
- **Region**: Keep the default or select a different region for the network and all its resources.
43+
44+
:::image type="content" source="media/quick-create-portal/example-basics-tab.png" alt-text="Screenshot of the Create virtual network screen in the Azure portal.":::
45+
46+
1. Select **Next: IP Addresses** at the bottom of the page.
47+
48+
1. On the **IP Addresses** tab, under **IPv4 address space**, select the garbage can icon to remove any address space that already appears, and then enter *10.0.0.0/16*.
49+
50+
1. Select **Add subnet**.
51+
52+
1. On the **Add subnet** screen, enter the following information, and then select **Add**:
53+
54+
- **Subnet name**: *default*
55+
- **Subnet address range**: *10.0.0.0/24*.
56+
57+
:::image type="content" source="media/quick-create-portal/example-ip-addresses-with-subnet.png" alt-text="Screenshot of the IP addresses tab and Add subnet screen on the Create virtual network page.":::
58+
59+
1. Select **Next: Security** at the bottom of the page.
60+
61+
1. On the **Security** tab, next to **BastionHost**, select **Enable**.
62+
63+
Azure Bastion uses your browser to connect to VMs in your virtual network over secure shell (SSH) or remote desktop protocol (RDP) by using their private IP addresses. The VMs don't need public IP addresses, client software, or special configuration. For more information about Azure Bastion, see [Azure Bastion](/azure/bastion/bastion-overview).
64+
65+
1. Enter the following information:
66+
67+
- **Bastion name**: *VNet-Bastion*
68+
- **AzureBastionSubnet address space**: *10.0.1.0/26*. Azure automatically creates the AzureBastionSubnet subnet.
69+
- **Public IP address**: Select **Create new**, then enter *VNet-bastion-publicIp* under **Name** and select **OK**.
70+
71+
:::image type="content" source="media/quick-create-portal/example-security-tab.png" alt-text="Screenshot of the Security tab on the Create virtual network screen.":::
72+
73+
1. Select **Review + create** at the bottom of the screen, and when validation passes, select **Create**.
2874

2975
## Create virtual machines
3076

@@ -70,9 +116,7 @@ Create two VMs named VM1 and VM2 in the virtual network.
70116

71117
1. On the **Virtual machines** page, select **VM1**.
72118

73-
1. At the top of the **VM1** page, select **Connect**.
74-
75-
1. On the **Connect** page, select **More ways to connect**, and then select **Go to Bastion**.
119+
1. At the top of the **VM1** page, select the dropdown arrow next to **Connect**, and then select **Bastion**.
76120

77121
:::image type="content" source="./media/quick-create-portal/connect-to-virtual-machine.png" alt-text="Screenshot of connecting to VM1 with Azure Bastion." border="true":::
78122

articles/virtual-network/quick-create-powershell.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,11 @@ Azure takes a few minutes to create the VMs. When Azure finishes creating the VM
154154
155155
## Connect to a VM
156156
157-
1. In the [Azure portal](https://portal.azure.com), search for and select **Virtual machines**.
157+
1. In the portal, search for and select **Virtual machines**.
158158
159159
1. On the **Virtual machines** page, select **VM1**.
160160
161-
1. At the top of the **VM1** page, select **Connect**.
162-
163-
1. On the **Connect** page, select **More ways to connect**, and then select **Go to Bastion**.
161+
1. At the top of the **VM1** page, select the dropdown arrow next to **Connect**, and then select **Bastion**.
164162
165163
:::image type="content" source="./media/quick-create-portal/connect-to-virtual-machine.png" alt-text="Screenshot of connecting to VM1 with Azure Bastion." border="true":::
166164

0 commit comments

Comments
 (0)