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/azure-resource-manager/bicep/deploy-preflight.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@ Preflight is the server validation phase that runs after you submit the template
11
11
12
12
To understand preflight, it helps to see where it fits compared to other checks:
13
13
14
-
1.[**Linting (Static Check)**](./linter.md): Checks syntax and best practices (for example, "You have an unused variable") while you type in VS Code.
15
-
2.**Deployment Validation (The "Dry Run")**: This step is preflight. It sends your template to Azure to see if Azure Resource Manager (ARM) accepts the configuration.
14
+
1.[**Linting**](./linter.md): Checks syntax and best practices (for example, "You have an unused variable") while you type in VS Code.
15
+
2.**Preflight**: It sends your template to Azure to see if Azure Resource Manager (ARM) accepts the configuration.
16
16
3.[**What-If**](./deploy-what-if.md): Predicts exactly which resources are created, modified, or deleted.
17
17
4.[**Deployment**](./deploy-cli.md): The actual execution where Azure builds the resources.
18
18
@@ -57,14 +57,14 @@ Preflight validation runs automatically when you use deployment validate or what
57
57
58
58
For more information, see [Deploy Bicep files with the Azure CLI](./deploy-cli.md) and [Deploy Bicep files with the Azure PowerShell](./deploy-powershell.md).
59
59
60
-
- What-if
61
-
62
-
What-if includes preflight checks before calculating changes unless you configure it to skip the preflight. For more information, see [Running the what-if operation](./deploy-what-if.md#running-the-what-if-operation).
63
-
64
60
- Azure portal **Review + create** step
65
61
66
62
Currently, the Azure portal only supports deploying ARM JSON templates. For more information, see [Deploy ARM templates with the Azure portal](../templates/deploy-portal.md).
67
63
64
+
- What-if
65
+
66
+
What-if includes preflight checks before calculating changes unless you configure it to skip the preflight. For more information, see [Running the what-if operation](./deploy-what-if.md#running-the-what-if-operation).
67
+
68
68
Preflight errors appear in the activity log but not in deployment history, because the deployment never began.
0 commit comments