Skip to content

Commit 5438a64

Browse files
committed
updates2
1 parent 4f878f7 commit 5438a64

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

articles/azure-functions/functions-create-first-function-terraform.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Quickstart: Create and deploy Azure Functions resources from Terraform'
33
description: In this quickstart, you create a resource group, storage account, blob storage account, and service plan in Azure for an Azure Functions Flex Consumption plan.
44
ms.topic: quickstart
5-
ms.date: 03/26/2025
5+
ms.date: 04/01/2025
66
ms.custom: devx-track-terraform
77
ms.service: azure-functions
88
author: ggailey777
@@ -12,7 +12,7 @@ content_well_notification:
1212
- AI-contribution
1313
---
1414

15-
# 'Quickstart: Create and deploy Azure Functions resources from Terraform'
15+
# Quickstart: Create and deploy Azure Functions resources from Terraform
1616

1717
In this quickstart, you use Terraform to create a function app in a Flex Consumption plan in Azure, along with its required Azure resources. Azure Functions Flex Consumption is a serverless compute service that helps you to run code on demand without explicitly provisioning or managing infrastructure. It's used for processing data, integrating systems, internet-of-things computing, and building simple APIs and microservices. The resources created in this configuration include a unique resource group, a storage account, a blob storage container, a service plan, and the function app itself. The function app is configured to use blob storage and is set to run on a Linux operating system.
1818

@@ -35,10 +35,7 @@ In this quickstart, you use Terraform to create a function app in a Flex Consump
3535

3636
## Implement the Terraform code
3737

38-
> [!NOTE]
39-
> The sample code for this article is located in the [Azure Terraform GitHub repo](https://github.com/Azure/terraform/tree/master/quickstart/101-azure-functions). You can view the log file containing the [test results from current and previous versions of Terraform](https://github.com/Azure/terraform/tree/master/quickstart/101-azure-functions/TestRecord.md).
40-
>
41-
> See more [articles and sample code showing how to use Terraform to manage Azure resources](/azure/terraform).
38+
The sample code for this article is located in the [Azure Terraform GitHub repo](https://github.com/Azure/terraform/tree/master/quickstart/101-azure-functions). You can view the log file containing the [test results from current and previous versions of Terraform](https://github.com/Azure/terraform/tree/master/quickstart/101-azure-functions/TestRecord.md). See more [articles and sample code showing how to use Terraform to manage Azure resources](/azure/terraform).
4239

4340
1. Create a directory in which to test and run the sample Terraform code, and make it the current directory.
4441

@@ -54,6 +51,8 @@ In this quickstart, you use Terraform to create a function app in a Flex Consump
5451
1. Create a file named `variables.tf`, and insert the following code:
5552
:::code language="Terraform" source="~/terraform_samples/quickstart/101-azure-functions/variables.tf":::
5653

54+
> [!IMPORTANT] > Azure Storage Actions is currently in PREVIEW and is available in these [regions](../overview.md#supported-regions). > See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
55+
5756
## Initialize Terraform
5857

5958
[!INCLUDE [terraform-init.md](~/azure-dev-docs-pr/articles/terraform/includes/terraform-init.md)]
@@ -134,6 +133,10 @@ In this quickstart, you use Terraform to create a function app in a Flex Consump
134133

135134
---
136135

136+
Open a browser and enter the following URL: **https://<fa_name>.azurewebsites.net**. Replace the placeholder `<fa_name>` with the value output by Terraform.
137+
138+
:::image type="content" source="media/functions-create-first-function-terraform/function-app-terraform.png" alt-text="Screenshot of Azure Functions app 'Welcome page'." border="false":::
139+
137140
## Clean up resources
138141

139142
[!INCLUDE [terraform-plan-destroy.md](~/azure-dev-docs-pr/articles/terraform/includes/terraform-plan-destroy.md)]

0 commit comments

Comments
 (0)