Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
},
"AllowedHosts": "*",
"ConnectionStrings": {
"AppConfig": "{{ appconfig-url }}"
// Replace with the Azure App Configuration endpoint URL
"AppConfig": "https://<app-config-name>.azconfig.io"
}
}

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"ConnectionStrings": {
"AppConfig": "{{ appconfig-url }}"
// Replace with the Azure App Configuration endpoint URL
"AppConfig": "https://<app-config-name>.azconfig.io"
},
"KernelMemory": {
"Service": {
Expand Down Expand Up @@ -117,47 +118,32 @@
"BucketName": ""
},
"AzureAISearch": {
"Auth": "ApiKey",
"Endpoint": "",
"APIKey": "",
// Auth and Endpoint are configured in Azure App Configuration
"UseHybridSearch": true
},
"AzureAIDocIntel": {
"Auth": "ApiKey",
"APIKey": "",
"Endpoint": ""
// Auth and Endpoint are configured in Azure App Configuration
},
"AzureBlobs": {
"Auth": "AzureIdentity",
"Account": "",
"Container": "",
"ConnectionString": "",
// Auth, Account, and Container are configured in Azure App Configuration
"EndpointSuffix": "core.windows.net"
},
"AzureOpenAIEmbedding": {
"Auth": "ApiKey",
"Endpoint": "",
"APIKey": "",
"Deployment": "",
// Auth, Endpoint, and Deployment are configured in Azure App Configuration
"MaxTokenTotal": 8191,
"EmbeddingDimensions": null,
"MaxEmbeddingBatchSize": 1,
"MaxRetries": 10,
"APIType": "EmbeddingGeneration"
},
"AzureOpenAIText": {
"Auth": "ApiKey",
"Endpoint": "",
"APIKey": "",
"Deployment": "",
// Auth, Endpoint, and Deployment are configured in Azure App Configuration
"MaxTokenTotal": 128000,
"APIType": "ChatCompletion",
"MaxRetries": 10
},
"AzureQueues": {
"Auth": "AzureIdentity",
"Account": "",
"ConnectionString": "",
// Auth and Account are configured in Azure App Configuration
"EndpointSuffix": "core.windows.net",
"PollDelayMsecs": 100,
"FetchBatchSize": 3,
Expand Down
51 changes: 51 additions & 0 deletions docs/DeleteResourceGroup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Deleting Resources After a Failed Deployment in Azure Portal

If your deployment fails and you need to clean up the resources manually, follow these steps in the Azure Portal.

---

## **1. Navigate to the Azure Portal**
1. Open [Azure Portal](https://portal.azure.com/).
2. Sign in with your Azure account.

---

## **2. Find the Resource Group**
1. In the search bar at the top, type **"Resource groups"** and select it.
2. Locate the **resource group** associated with the failed deployment.

![Resource Groups](images/resourcegroup.png)

![Resource Groups](images/resource-groups.png)

---

## **3. Delete the Resource Group**
1. Click on the **resource group name** to open it.
2. Click the **Delete resource group** button at the top.

![Delete Resource Group](images/delete-rg.png)

3. Type the resource group name in the confirmation box and click **Delete**.

📌 **Note:** Deleting a resource group will remove all resources inside it.

---

## **4. Delete Individual Resources (If Needed)**
If you don’t want to delete the entire resource group, follow these steps:

1. Open **Azure Portal** and go to the **Resource groups** section.
2. Click on the specific **resource group**.
3. Select the **resource** you want to delete (e.g., App Service, Storage Account).
4. Click **Delete** at the top.

![Delete Individual Resource](images/deleteservices.png)

---

## **5. Verify Deletion**
- After a few minutes, refresh the **Resource groups** page.
- Ensure the deleted resource or group no longer appears.

📌 **Tip:** If a resource fails to delete, check if it's **locked** under the **Locks** section and remove the lock.
Loading