Skip to content

Commit 8a67a64

Browse files
updates
1 parent 827f824 commit 8a67a64

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

articles/static-web-apps/publish-bicep.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Deploy Azure Static Web Apps with Bicep'
3-
description: Deploy Azure Static Web Apps using Bicep including resource creation and configuration. Link your own Azure Functions app to support your static web app.
3+
description: Deploy Azure Static Web Apps using Bicep, and optionally link an existing Azure Functions app as the backend to your static web app.
44
services: static-web-apps
55
author: craigshoemaker
66
ms.service: azure-static-web-apps
@@ -16,19 +16,12 @@ You can use a Bicep file to create an instance of Azure Static Web Apps. Bicep p
1616

1717
The steps in this article show you how to use Bicep to create a resource group and a Static Web Apps instance. After your static web app is created you still need to deploy your code using the typical methods of GitHub Actions, or using Azure Pipelines.
1818

19-
## Resource creation tools
20-
21-
Bicep is one of several tools you can use to create resources in Azure. These tools include:
19+
You can use Bicep along with Azure Verified Modules (AVM) to deploy your static web apps.
2220

2321
| Tool | Description |
2422
|---|---|
25-
| [Azure Resource Manager (ARM)](/azure/azure-resource-manager/) | To implement infrastructure as code for your Azure solutions, use Azure Resource Manager templates (ARM templates). The template is a JavaScript Object Notation (JSON) file that defines the infrastructure and configuration for your project. This older style is still in use. |
26-
| [Bicep](/azure/azure-resource-manager/Bicep/) | Bicep is a domain-specific language (DSL) that uses declarative syntax to deploy Azure resources. Bicep provides concise syntax, reliable type safety, and support for code reuse. |
27-
| [Azure verified modules (AVM)](https://azure.github.io/Azure-Verified-Modules) | These modules represent the only standard from Microsoft for Bicep modules in the [Bicep Public Registry](https://github.com/Azure/bicep-registry-modules/tree/main/avm). Use AVM when possible because it consolidates and set the standards for what a good infrastructure as code module looks like. |
28-
| [Azure CLI](/cli/azure/)/[PowerShell](/powershell) | These command line apps allow you to create resources. Bicep and AVM are often used in favor of these tools, but are still used for minor or quick fixes while the larger Bicep update might be more time-consuming. Learn to [create resources with the Azure CLI and a Bicep file](/azure/azure-resource-manager/bicep/deploy-cli#deploy-local-bicep-file). |
29-
| [Azure portal](https://portal.azure.com/) | Azure portal is a web-based visual interface for resource creation and configuration. |
30-
31-
You can create and configure resources using any of the listed tools.
23+
| [Bicep](/azure/azure-resource-manager/Bicep/) | Bicep is a domain-specific language (DSL) that uses a declarative syntax to deploy Azure resources. Bicep provides concise syntax, reliable type safety, and support for code reuse. |
24+
| [Azure verified modules (AVM)](https://azure.github.io/Azure-Verified-Modules) | These modules represent the only standard from Microsoft for Bicep modules in the [Bicep Public Registry](https://github.com/Azure/bicep-registry-modules/tree/main/avm). Use AVMs when possible as they represent best practices for infrastructure as code. |
3225

3326
## Verified modules
3427

@@ -143,7 +136,7 @@ Now that your Azure Static Web Apps instance is created, you can deploy your sou
143136

144137
- [Azure Developer CLI (Recommended)](/azure/developer/azure-developer-cli)
145138
- [Static Web Apps CLI](https://github.com/Azure/static-web-apps-cli)
146-
- [GitHub Action](https://docs.github.com/actions)
139+
- [GitHub Actions](https://docs.github.com/actions)
147140
- [Azure Pipelines](/azure/devops/pipelines/overview-azure)
148141

149142
- **Local development environment**: Use [Azure Developer CLI](/azure/developer/azure-developer-cli) to deploy from your local machine. When running locally, you define your deployment in an `azure.yml` file. This file includes hooks that plug into the resource creation process at any point. These extensibility points help you during deployment, especially when different parts of your app need to know about each other at build time.

0 commit comments

Comments
 (0)