Skip to content

Commit 9fee471

Browse files
committed
updates
1 parent cd32e88 commit 9fee471

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/deployment-environments/concept-environment-yaml.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
2-
title: manifest.yaml schema
3-
description: Learn how to use manifest.yaml to define parameters in your environment definition.
2+
title: environment.yaml schema
3+
description: Learn how to use environment.yaml to define parameters in your environment definition.
44
author: RoseHJM
55
ms.author: rosemalcolm
66
ms.service: azure-deployment-environments
77
ms.topic: concept-article
88
ms.date: 03/20/2025
99

10-
# Customer intent: As a developer, I want to know the properties and parameters that I can use in manifest.yaml.
10+
# Customer intent: As a developer, I want to know the properties and parameters that I can use in environment.yaml.
1111

1212
---
1313

14-
# Properties and parameters in manifest.yaml
14+
# Properties and parameters in environment.yaml
1515

16-
Azure Deployment Environments environment definitions are infrastructure as code (IaC) that are written in Bicep or Terraform and stored in repositories. You can modify and adapt environment definitions for your requirements and then use them to create a deployment environment on Azure. The manifest.yaml schema defines and describes the types of Azure resources included in environment definitions.
16+
Azure Deployment Environments environment definitions are infrastructure as code (IaC) that are written in Bicep or Terraform and stored in repositories. You can modify and adapt environment definitions for your requirements and then use them to create a deployment environment on Azure. The environment.yaml schema defines and describes the types of Azure resources included in environment definitions.
1717

1818

19-
## What is manifest.yaml?
19+
## What is environment.yaml?
2020

21-
The manifest.yaml file describes the resources used and the template location for the environment definition.
21+
The environment.yaml file describes the resources used and the template location for the environment definition.
2222

23-
### Sample manifest.yaml
23+
### Sample environment.yaml
2424

25-
The following script is an example of the manifest.yaml that's required for your environment definition.
25+
The following script is an example of the environment.yaml that's required for your environment definition.
2626

2727
```yml
2828
name: WebApp
@@ -35,7 +35,7 @@ templatePath: azuredeploy.json
3535
3636
### Definitions
3737
38-
The following table describes the properties that you can use in manifest.yaml.
38+
The following table describes the properties that you can use in environment.yaml.
3939
4040
| Property | Type | Description | Required?|Example|
4141
| ------------ | -------- |------- | ------------ | ---------------- |
@@ -47,13 +47,13 @@ The following table describes the properties that you can use in manifest.yaml.
4747
| `templatePath` | string | The relative path of the entry template file. | Yes | main.tf </br> main.bicep </br> azuredeploy.json |
4848
| `parameters` | array | Input parameters to use when creating the environment and running actions. | No | #/definitions/Parameter |
4949

50-
## Parameters in manifest.yaml
50+
## Parameters in environment.yaml
5151

5252
Parameters enable you to reuse an environment definition in different scenarios. For example, you might want developers in different regions to deploy the same environment. You can define a location parameter to prompt developers to enter the desired location as they create their environments.
5353

54-
### Sample manifest.yaml with parameters
54+
### Sample environment.yaml with parameters
5555

56-
The following script is an example of a manifest.yaml file that includes two parameters: `location` and `name`.
56+
The following script is an example of a environment.yaml file that includes two parameters: `location` and `name`.
5757

5858
```yml
5959
name: WebApp
@@ -78,7 +78,7 @@ parameters:
7878

7979
### Parameter definitions
8080

81-
The following table describes the data types that you can use in manifest.yaml. The data type names used in the manifest.yaml file differ from the ones used in ARM templates.
81+
The following table describes the data types that you can use in environment.yaml. The data type names used in the environment.yaml file differ from the ones used in ARM templates.
8282

8383
Each parameter can use any of the following properties:
8484

@@ -95,7 +95,7 @@ Each parameter can use any of the following properties:
9595

9696
## YAML schema
9797

98-
There's a defined schema for Azure Deployment Environments manifest.yaml files. It can make editing these files a little easier. You can add the schema definition to the beginning of your manifest.yaml file:
98+
There's a defined schema for Azure Deployment Environments environment.yaml files. It can make editing these files a little easier. You can add the schema definition to the beginning of your environment.yaml file:
9999

100100
```yml
101101
# yaml-language-server: $schema=https://github.com/Azure/deployment-environments/releases/download/2022-11-11-preview/manifest.schema.json

0 commit comments

Comments
 (0)