You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ The diagram below illustrates the capabilities included in the template.
35
35
36
36
- Configures AI Foundry, adhering to the best practices outlined in the Well Architected Framework.
37
37
38
-
- Provides the ability to [add additional Azure services during deployment](docs/feature_flags.md), configured to connect via isolation to enrich your AI project.
38
+
- Provides the ability to [add additional Azure services during deployment](docs/add_additional_services.md), configured to connect via isolation to enrich your AI project.
Within this deployment of AI Foundry, we also have coupled several additional Azure services that are commonly deployed when creating an AI solution. We have added the ability to deploy these services at the same time as Foundry, or as an additional run of the deploymentto add the services later.
4
-
To allow for this, we leverage several true/false values to either enable or disable (default behavior) the deployment and configuration of the service(s).
3
+
Within this deployment automation of AI Foundry, we also have coupled several additional Azure services that are commonly deployed when creating an AI solution. We have added the ability to deploy these services at the same time as the AI Foundry deployment, or to add the services later.
4
+
These 'feature flags' leverage true/false values to either enable or disable (default behavior) the deployment and configuration of the following service(s):
5
5
6
-
Below is a table of the available feature flags in this repository:
6
+
**Table of the available feature flags in this repository:**
7
7
8
8
|**Feature Flag Name**|**Effect When Enabled**|**Instructions to Enable**|
@@ -12,5 +12,17 @@ Below is a table of the available feature flags in this repository:
12
12
|`acrEnabled`| Enables Azure Container Registry (ACR) integration. | Set the environment variable `AZURE_ACR_ENABLED` to `true`. |
13
13
|`apiManagementEnabled`| Enables API Management integration. | Set the environment variable `AZURE_API_MANAGEMENT_ENABLED` to `true`. |
14
14
15
-
To enable these features during the deplpoyment of your Foundry services, simply set the default value of false to 'true'. This will the add that selected feature into the deployment and the features will integrate to the virtual network, private endpoints, and dns zones.
16
-
Additionally, within the infra/ folder you can modify the main.parameters.json file to set the value to 'true' if you plan to deploy with that feature enabled each time.
15
+
To enable these features during the deplpoyment of your Foundry services, simply set the value to 'true' when prompted. This will the add that selected feature into the deployment and the features will integrate to the virtual network, private endpoints, and dns zones.
16
+
17
+
You can set the values as an env variable within the code
18
+
```powershell
19
+
azd env set AZURE_API_MANAGEMENT_ENABLED true
20
+
```
21
+
22
+
Additionally, within the infra/ folder you can modify the main.parameters.json file to set the value to
23
+
```json
24
+
"apiManagementEnabled": {
25
+
"value": "${AZURE_API_MANAGEMENT_ENABLED=true}"
26
+
}
27
+
```
28
+
if you plan to deploy with that feature enabled each time you deploy this solution.
0 commit comments