Skip to content

Commit 762aead

Browse files
committed
removed extra changes
1 parent f2d85d6 commit 762aead

File tree

3 files changed

+34
-26
lines changed

3 files changed

+34
-26
lines changed

azure.yaml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
11
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
22

33
name: multi-agent-custom-automation-engine-solution-accelerator
4-
metadata:
5-
6-
services:
7-
backend:
8-
project: src/backend
9-
host: containerapp
10-
language: python
11-
docker:
12-
path: Dockerfile
13-
frontend:
14-
project: src/frontend
15-
host: containerapp
16-
language: python
17-
docker:
18-
path: Dockerfile

infra/main.bicep

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
1-
@description('Location for all resources.')
2-
param location string = 'EastUS2' //Fixed for model availability, change back to resourceGroup().location
3-
4-
@description('Location for OpenAI resources.')
5-
param azureOpenAILocation string = 'japaneast' //Fixed for model availability
6-
7-
8-
9-
@description('A prefix to add to the start of all resource names. Note: A "unique" suffix will also be added')
10-
param prefix string = 'macaeo'
1+
param location string
2+
3+
@allowed([
4+
'australiaeast'
5+
'brazilsouth'
6+
'canadacentral'
7+
'canadaeast'
8+
'eastus'
9+
'eastus2'
10+
'francecentral'
11+
'germanywestcentral'
12+
'japaneast'
13+
'koreacentral'
14+
'northcentralus'
15+
'norwayeast'
16+
'polandcentral'
17+
'southafricanorth'
18+
'southcentralus'
19+
'southindia'
20+
'swedencentral'
21+
'switzerlandnorth'
22+
'uaenorth'
23+
'uksouth'
24+
'westeurope'
25+
'westus'
26+
'westus3'
27+
])
28+
@description('Location for all Ai services resources. This location can be different from the resource group location.')
29+
param azureOpenAILocation string // The location used for all deployed resources. This location must be in the same region as the resource group.
30+
31+
@minLength(3)
32+
@maxLength(20)
33+
@description('Prefix for all resources created by this template. This prefix will be used to create unique names for all resources. The prefix must be unique within the resource group.')
34+
param prefix string
1135

1236
@description('Tags to apply to all deployed resources')
1337
param tags object = {}
Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)