You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machines/auto-shutdown-vm.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,8 @@ Sign in to the [Azure portal](https://portal.azure.com/).
22
22
2. In the virtual machine's detail page, select "Auto-shutdown" under the **Operations** section.
23
23
3. In the "Auto-shutdown" configuration screen, toggle the switch to "On."
24
24
4. Set the time you want the virtual machine to shut down.
25
-
5. Select "Save" to save the auto-shutdown configuration.
25
+
5. If you want to receive notification before shutdown, select "Yes" in the "Send notification before shutdown" option and provide details in "Email Address" or "Webhook URL" as per your choice.
26
+
6. Select "Save" to save the auto-shutdown configuration.
Copy file name to clipboardExpand all lines: articles/virtual-machines/azure-compute-gallery.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ There are limits, per subscription, for deploying resources using Azure Compute
49
49
- 1,000 image definitions, per subscription, per region
50
50
- 10,000 image versions, per subscription, per region
51
51
- 100 replicas per image version however 50 replicas should be sufficient for most use cases
52
-
- Any disk attached to the image must be less than or equal to 1 TB in size
52
+
- Any disk attached to the image must be less than or equal to 2 TB in size
53
53
- Resource move isn't supported for Azure compute gallery resources
54
54
55
55
For more information, see [Check resource usage against limits](../networking/check-usage-against-limits.md) for examples on how to check your current usage.
Copy file name to clipboardExpand all lines: articles/virtual-machines/linux/tutorial-lemp-stack.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -643,7 +643,7 @@ Results:
643
643
644
644
The following example creates a VM named `$MY_VM_NAME` and creates SSH keys if they don't already exist in a default key location. The command also sets `$MY_VM_USERNAME` as an administrator user name.
645
645
646
-
To improve the security of Linux virtual machines in Azure, you can integrate with Azure Active Directory authentication. Now you can use Azure AD as a core authentication platform. You can also SSH into the Linux VM by using Azure AD and OpenSSH certificate-based authentication. This functionality allows organizations to manage access to VMs with Azure role-based access control and Conditional Access policies.
646
+
To improve the security of Linux virtual machines in Azure, you can integrate with Microsoft Entra ID authentication. Now you can use Microsoft Entra ID as a core authentication platform. You can also SSH into the Linux VM by using Microsoft Entra ID and OpenSSH certificate-based authentication. This functionality allows organizations to manage access to VMs with Azure role-based access control and Conditional Access policies.
647
647
648
648
Create a VM with the [az vm create](/cli/azure/vm#az-vm-create) command.
649
649
@@ -708,7 +708,7 @@ done
708
708
```
709
709
710
710
<!--
711
-
## Assign Azure AD RBAC for Azure AD login for Linux Virtual Machine
711
+
## Assign Microsoft Entra ID RBAC for Microsoft Entra ID login for Linux Virtual Machine
712
712
The below command uses [az role assignment create](https://learn.microsoft.com/cli/azure/role/assignment#az-role-assignment-create) to assign the `Virtual Machine Administrator Login` role to the VM for your current Azure user.
713
713
```bash
714
714
export MY_RESOURCE_GROUP_ID=$(az group show --resource-group $MY_RESOURCE_GROUP_NAME --query id -o tsv)
@@ -743,15 +743,15 @@ Results:
743
743
744
744
<!--
745
745
## Export the SSH configuration for use with SSH clients that support OpenSSH
746
-
Login to Azure Linux VMs with Azure AD supports exporting the OpenSSH certificate and configuration. That means you can use any SSH clients that support OpenSSH-based certificates to sign in through Azure AD. The following example exports the configuration for all IP addresses assigned to the VM:
746
+
Login to Azure Linux VMs with Microsoft Entra ID supports exporting the OpenSSH certificate and configuration. That means you can use any SSH clients that support OpenSSH-based certificates to sign in through Microsoft Entra ID. The following example exports the configuration for all IP addresses assigned to the VM:
747
747
```bash
748
748
az ssh config --file ~/.ssh/azure-config --name $MY_VM_NAME --resource-group $MY_RESOURCE_GROUP_NAME
749
749
```
750
750
-->
751
751
752
-
## Enable Azure AD login for a Linux Virtual Machine in Azure
752
+
## Enable Microsoft Entra ID login for a Linux Virtual Machine in Azure
753
753
754
-
The following installs the extension to enable Azure AD login for a Linux VM. VM extensions are small applications that provide post-deployment configuration and automation tasks on Azure virtual machines.
754
+
The following installs the extension to enable Microsoft Entra ID login for a Linux VM. VM extensions are small applications that provide post-deployment configuration and automation tasks on Azure virtual machines.
0 commit comments