Skip to content

Commit 370ed52

Browse files
authored
Merge pull request #7602 from alexwolfmsft/fix-elements
Fix elements
2 parents aba997b + 71e4c97 commit 370ed52

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

articles/azure-developer-cli/reference.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: Azure Developer CLI reference
33
description: This article explains the syntax and parameters for the various Azure Developer CLI commands.
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 06/05/2025
6+
ms.date: 07/17/2025
77
ms.service: azure-dev-cli
8-
ms.topic: how-to
8+
ms.topic: conceptual
99
ms.custom: devx-track-azdevcli
1010
---
1111

@@ -131,7 +131,7 @@ azd auth login [flags]
131131
--client-id string The client id for the service principal to authenticate with.
132132
--client-secret string The client secret for the service principal to authenticate with. Set to the empty string to read the value from the console.
133133
--docs Opens the documentation for azd auth login in your web browser.
134-
--federated-credential-provider string The provider to use to acquire a federated token to authenticate with.
134+
--federated-credential-provider string The provider to use to acquire a federated token to authenticate with. Supported values: github, azure-pipelines, oidc
135135
-h, --help Gets help for login.
136136
--managed-identity Use a managed identity to authenticate.
137137
--redirect-port int Choose the port to be used as part of the redirect URI during interactive login.
@@ -547,8 +547,8 @@ Manage environments (ex: default environment, environment variables).
547547
* [azd env new](#azd-env-new): Create a new environment and set it as the default.
548548
* [azd env refresh](#azd-env-refresh): Refresh environment settings by using information from a previous infrastructure provision.
549549
* [azd env select](#azd-env-select): Set the default environment.
550-
* [azd env set](#azd-env-set): Manage your environment settings.
551-
* [azd env set-secret](#azd-env-set-secret): Set a `<name>` as a reference to a Key Vault secret in the environment.
550+
* [azd env set](#azd-env-set): Set one or more environment values.
551+
* [azd env set-secret](#azd-env-set-secret): Set a name as a reference to a Key Vault secret in the environment.
552552
* [Back to top](#azd)
553553

554554
## azd env get-value
@@ -727,17 +727,22 @@ azd env select <environment> [flags]
727727

728728
## azd env set
729729

730-
Manage your environment settings.
730+
Set one or more environment values.
731+
732+
### Synopsis
733+
734+
Set one or more environment values using key-value pairs or by loading from a .env formatted file.
731735

732736
```azdeveloper
733-
azd env set <key> <value> [flags]
737+
azd env set [<key> <value>] | [<key>=<value> ...] | [--file <filepath>] [flags]
734738
```
735739

736740
### Options
737741

738742
```azdeveloper
739743
--docs Opens the documentation for azd env set in your web browser.
740744
-e, --environment string The name of the environment to use.
745+
--file string Path to .env formatted file to load environment values from.
741746
-h, --help Gets help for set.
742747
```
743748

@@ -756,7 +761,7 @@ azd env set <key> <value> [flags]
756761

757762
## azd env set-secret
758763

759-
Set a `<name>` as a reference to a Key Vault secret in the environment.
764+
Set a name as a reference to a Key Vault secret in the environment.
760765

761766
### Synopsis
762767

@@ -915,6 +920,7 @@ azd init [flags]
915920
--from-code Initializes a new application from your existing code.
916921
-h, --help Gets help for init.
917922
-l, --location string Azure location for the new environment
923+
-m, --minimal Initializes a minimal project.
918924
-s, --subscription string Name or ID of an Azure subscription to use for the new environment
919925
-t, --template string Initializes a new application from a template. You can use Full URI, <owner>/<repository>, or <repository> if it's part of the azure-samples organization.
920926
--up Provision and deploy to Azure after initializing the project from a template.
@@ -1067,7 +1073,7 @@ azd provision [flags]
10671073
--docs Opens the documentation for azd provision in your web browser.
10681074
-e, --environment string The name of the environment to use.
10691075
-h, --help Gets help for provision.
1070-
--no-state Do not use latest Deployment State (bicep only).
1076+
--no-state (Bicep only) Forces a fresh deployment based on current Bicep template files, ignoring any stored deployment state.
10711077
--preview Preview changes to Azure resources.
10721078
```
10731079

0 commit comments

Comments
 (0)