Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f61234f
US:18890-Standardize Bicep Parameters for MACAE
VishalS-Microsoft Jun 10, 2025
421b6e7
Merge pull request #261 from microsoft/psl-bug-macae-19139
Roopan-Microsoft Jun 12, 2025
f47084a
Merge branch 'hotfix' into psl-us18890-vs
VishalS-Microsoft Jun 12, 2025
4782a3e
added more paramter in bicep file and md file
VishalS-Microsoft Jun 12, 2025
fbfcdf1
Merge pull request #255 from microsoft/psl-us18890-vs
Roopan-Microsoft Jun 12, 2025
a074b9c
FDP changes
Abdul-Microsoft Jun 13, 2025
2865957
Merge branch 'main' into hotfix
VishalS-Microsoft Jun 13, 2025
dd78666
role assignment changes
Abdul-Microsoft Jun 13, 2025
8f00a73
added dependson to fix aiservice deployment issue
Abdul-Microsoft Jun 13, 2025
b711fc2
sample.env file
UtkarshMishra-Microsoft Jun 13, 2025
f413121
FDP-Backend_Changes
UtkarshMishra-Microsoft Jun 13, 2025
a1e3855
Agent_factory Updated
UtkarshMishra-Microsoft Jun 13, 2025
ba6c85b
Endpoint Updated
UtkarshMishra-Microsoft Jun 13, 2025
414ae47
env changes
UtkarshMishra-Microsoft Jun 13, 2025
1b38395
Pylint Issue
UtkarshMishra-Microsoft Jun 16, 2025
ac6240b
Pylint removal
UtkarshMishra-Microsoft Jun 16, 2025
3170e01
Update Application Insights configuration and refactor response forma…
Abdul-Microsoft Jun 16, 2025
23c469b
resolved pylint and agent recreation issue
Abdul-Microsoft Jun 16, 2025
9466a21
Merge remote-tracking branch 'origin/FDP-Latest_changes' into psl-fdp…
Abdul-Microsoft Jun 16, 2025
adeea71
Remove unused AI Foundry resource configurations and clean up related…
Abdul-Microsoft Jun 16, 2025
0b211d1
removed storageaccount configuration param
Abdul-Microsoft Jun 16, 2025
3fe694f
Merge pull request #268 from microsoft/psl-fdp-bicepchange
Roopan-Microsoft Jun 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions docs/CustomizingAzdParameters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## [Optional]: Customizing resource names

By default this template will use the environment name as the prefix to prevent naming collisions within Azure. The parameters below show the default values. You only need to run the statements below if you need to change the values.

> To override any of the parameters, run `azd env set <PARAMETER_NAME> <VALUE>` before running `azd up`. On the first azd command, it will prompt you for the environment name. Be sure to choose 3-20 characters alphanumeric unique name.

## Parameters

| Name | Type | Default Value | Purpose |
| ------------------------------- | ------ | ----------------- | --------------------------------------------------------------------------------------------------- |
| `AZURE_ENV_NAME` | string | `macae` | Used as a prefix for all resource names to ensure uniqueness across environments. |
| `AZURE_LOCATION` | string | `swedencentral` | Location of the Azure resources. Controls where the infrastructure will be deployed. |
| `AZURE_ENV_OPENAI_LOCATION` | string | `swedencentral` | Specifies the region for OpenAI resource deployment. |
| `AZURE_ENV_MODEL_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
| `AZURE_ENV_MODEL_NAME` | string | `gpt-4o` | Specifies the name of the GPT model to be deployed. |
| `AZURE_ENV_MODEL_VERSION` | string | `2024-08-06` | Version of the GPT model to be used for deployment. |
| `AZURE_ENV_IMAGETAG` | string | `latest` | Docker image tag used for container deployments. |
| `AZURE_ENV_ENABLE_TELEMETRY` | bool | `true` | Enables telemetry for monitoring and diagnostics. |

---

## How to Set a Parameter

To customize any of the above values, run the following command **before** `azd up`:

```bash
azd env set <PARAMETER_NAME> <VALUE>
```

**Example:**

```bash
azd env set AZURE_LOCATION westus2
```
22 changes: 13 additions & 9 deletions docs/DeploymentGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,19 @@ Consider the following settings during your deployment to modify specific settin
<details>
<summary><b>Configurable Deployment Settings</b></summary>

When you start the deployment, most parameters will have **default values**, but you can update the following settings:

| **Setting** | **Description** | **Default value** |
| --------------------------------- | ------------------------------------------------------------------------------------------- | ----------------- |
| **Azure Region** | The region where resources will be created. | East US |
| **Secondary Location** | A **less busy** region for **Azure Cosmos DB**, useful in case of availability constraints. | eastus2 |
| **Deployment Type** | Select from a drop-down list. | GlobalStandard |
| **GPT Model** | Choose from **gpt-4, gpt-4o, gpt-4o-mini**. | gpt-4o |
| **GPT Model Deployment Capacity** | Configure capacity for **GPT models**. | 140k |
When you start the deployment, most parameters will have **default values**, but you can update the following settings [here](../docs/CustomizingAzdParameters.md):

| **Setting** | **Description** | **Default value** |
| ------------------------------ | ------------------------------------------------------------------------------------ | ----------------- |
| **Environment Name** | Used as a prefix for all resource names to ensure uniqueness across environments. | macae |
| **Azure Region** | Location of the Azure resources. Controls where the infrastructure will be deployed. | swedencentral |
| **OpenAI Deployment Location** | Specifies the region for OpenAI resource deployment. | swedencentral |
| **Model Deployment Type** | Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). | GlobalStandard |
| **GPT Model Name** | Specifies the name of the GPT model to be deployed. | gpt-4o |
| **GPT Model Version** | Version of the GPT model to be used for deployment. | 2024-08-06 |
| **Image Tag** | Docker image tag used for container deployments. | latest |
| **Enable Telemetry** | Enables telemetry for monitoring and diagnostics. | true |


</details>

Expand Down
Loading
Loading