Skip to content

Commit cbe6af0

Browse files
committed
fix links
1 parent e6e585e commit cbe6af0

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

articles/azure-developer-cli/TOC.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,6 @@
119119
items:
120120
- name: Manage config settings
121121
href: azd-config.md
122-
- name: Project name validation
123-
href: project-name-validation.md
124122
- name: Customize workflows using command and event hooks
125123
href: azd-extensibility.md
126124
- name: Enable demo mode

articles/azure-developer-cli/azd-extensibility.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,4 @@ echo 'Running "prepdocs.py"'
277277
--tenantid "$AZURE_TENANT_ID" -v
278278
```
279279

280-
## Next steps
281-
282-
For more information about hooks running in interactive mode by default, debugging capabilities, and enhanced schema validation, see [interactive hooks mode](interactive-hooks.md).
283-
284280
[!INCLUDE [request-help](includes/request-help.md)]

articles/azure-developer-cli/azd-init-workflow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ For advanced users who want to start with a minimal setup and customize everythi
113113
azd init --minimal
114114
```
115115

116-
2. When prompted, enter a name for your `azd` template and press Enter. Make sure to follow the [project name validation rules](project-name-validation.md) to prevent deployment failures.
116+
2. When prompted, enter a name for your `azd` template and press Enter.
117117

118118
```output
119119
? How do you want to initialize your app? Create a minimal project
@@ -142,9 +142,9 @@ For advanced users who want to start with a minimal setup and customize everythi
142142
- Use the `azd add` [compose feature](azd-compose.md) to start adding Azure resources to your app
143143
- Customize your `azure.yaml` file to define your services and resources
144144

145-
## Project name and Azure resource naming
145+
## Project and Azure resource naming
146146

147-
When you initialize a new or existing project, the project name is set in `azure.yaml`. The project name serves as a prefix for Azure resource names created during the provisioning process. By adhering to the validation rules, you ensure that generated Azure resource names will also be valid.
147+
When you initialize a new or existing project, the project name is set in `azure.yaml`. The project name acts as a prefix for Azure resource names created during the provisioning process. By adhering to the validation rules, you ensure that generated Azure resource names will also be valid.
148148

149149
In Bicep or Terraform templates, the project name is often used as a base for constructing resource names, combined with the environment name and other elements. For example:
150150

@@ -163,7 +163,7 @@ When using `azd init` to initialize a project or when creating a new project nam
163163
| Allowed characters | Project names can include lowercase letters, numbers, and hyphens only. |
164164
| Starting character | Project names must start with a letter. |
165165
| Ending character | Project names must not end with a hyphen. |
166-
| Length | Project names must be between 1 and 58 characters long. |
166+
| Length | Project names must be between 2 and 63 characters long. |
167167
| No consecutive hyphens | Project names cannot contain consecutive hyphens. |
168168

169169
These validation rules ensure that your project name will be compatible with the naming requirements of Azure resources and prevent service packaging failures during deployment.

0 commit comments

Comments
 (0)