Skip to content

Commit 80bee5f

Browse files
Merge pull request #50860 from ShawnKupfer/WB1812
User Feedback 440461 - Fix security type error per UUF feedback
2 parents 7a9c30d + eeaca9c commit 80bee5f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

learn-pr/azure/protect-virtual-machines-with-azure-backup/includes/4-exercise-back-up-azure-virtual-machine.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ az vm create \
6767
--subnet NorthwindInternal1
6868
```
6969

70+
> [!NOTE]
71+
> If you get a `securityProfile.securityType is invalid` error running the preceding command, run the following commands to register `UseStandardSecurityType`, then re-run the preceding command.
72+
>
73+
> ```azurecli
74+
> az feature register --name UseStandardSecurityType --namespace Microsoft.Compute
75+
> az feature show --name UseStandardSecurityType --namespace Microsoft.Compute
76+
> ```
77+
7078
The command can take a few minutes to complete. Wait for it to finish before moving on to the next step.
7179
7280
### Enable backup for a virtual machine by using the Azure portal

0 commit comments

Comments
 (0)