forked from krishcool/test1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.bicep
231 lines (211 loc) · 5.02 KB
/
test.bicep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
targetScope = 'resourceGroup'
@description('Virtual Network Name')
param vnetName string = 'abccopilot-vnet'
@description('Key Vault Name')
param keyVaultName string = 'testvault11'
@description('Storage Account Name')
param storageAccountName string = 'abccopilotdb'
@description('Azure AI Search Service Name')
param searchServiceName string = 'abccopilotuserdb'
@description('App Service Plan Name')
param appServicePlanName string = 'abccopilot-prod-ui'
@description('App Service Name')
param appServiceName string = 'abccopilot-prod-ui'
@description('Location for all resources')
param location string = resourceGroup().location
resource searchService 'Microsoft.Search/searchServices@2020-08-01' = {
name: searchServiceName
location: location
properties: {
hostingMode: 'default'
networkRuleSet: {
defaultAction: 'Deny'
virtualNetworkRules: [
{
id: defaultSubnet.id
}
]
}
}
sku: {
name: 'standard'
}
dependsOn: [
keyVault
]
}
resource storageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = {
name: storageAccountName
location: location
sku: {
name: 'Standard_LRS'
}
kind: 'StorageV2'
properties: {
accessTier: 'Hot'
networkAcls: {
defaultAction: 'Deny'
virtualNetworkRules: [
{
id: defaultSubnet.id
}
]
}
}
dependsOn: [
keyVault
]
}
resource attachmentsTable 'Microsoft.Storage/storageAccounts/tableServices/tables@2021-04-01' = {
parent: storageAccount
name: 'Attachments'
properties: {}
}
resource usersTable 'Microsoft.Storage/storageAccounts/tableServices/tables@2021-04-01' = {
parent: storageAccount
name: 'Users'
properties: {}
}
resource userRequestsTable 'Microsoft.Storage/storageAccounts/tableServices/tables@2021-04-01' = {
parent: storageAccount
name: 'UserRequests'
properties: {}
}
resource usageMonitoringTable 'Microsoft.Storage/storageAccounts/tableServices/tables@2021-04-01' = {
parent: storageAccount
name: 'UsageMonitoring'
properties: {}
}
resource abcCopilotContainer 'Microsoft.Storage/storageAccounts/blobServices/containers@2021-04-01' = {
parent: storageAccount
name: 'abccopilot-userdata'
properties: {}
}
resource appServicePlan 'Microsoft.Web/serverfarms@2021-02-01' = {
name: appServicePlanName
location: location
sku: {
name: 'P0V3'
tier: 'PremiumV3'
}
}
resource appService 'Microsoft.Web/sites@2021-02-01' = {
name: appServiceName
location: location
properties: {
serverFarmId: appServicePlan.id
siteConfig: {
linuxFxVersion: 'NODE|20-lts'
appSettings: [
{
name: 'WEBSITE_RUN_FROM_PACKAGE'
value: '1'
}
]
}
}
kind: 'app,linux'
dependsOn: [
appServicePlan
]
}
resource appInsights 'Microsoft.Insights/components@2021-05-01' = {
name: '${appServiceName}-ai'
location: location
properties: {
Application_Type: 'web'
}
dependsOn: [
appService
]
}
resource diagnosticSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = {
name: 'appServiceDiagnostics'
scope: appService
properties: {
logs: [
{
category: 'AppServiceHTTPLogs'
enabled: true
retentionPolicy: {
days: 0
enabled: false
}
}
]
metrics: [
{
category: 'AllMetrics'
enabled: true
retentionPolicy: {
days: 0
enabled: false
}
}
]
storageAccountId: storageAccount.id
}
dependsOn: [
appService
storageAccount
]
}
resource autoScaleSetting 'Microsoft.Insights/autoscaleSettings@2021-05-01' = {
name: '${appServiceName}-autoscale'
location: location
properties: {
profiles: [
{
name: 'AutoScaleProfile'
capacity: {
minimum: '1'
maximum: '2'
default: '1'
}
rules: [
{
metricTrigger: {
metricName: 'Percentage CPU'
metricNamespace: 'Microsoft.Web/sites'
timeGrain: 'PT1M'
statistic: 'Average'
timeWindow: 'PT5M'
timeAggregation: 'Average'
operator: 'GreaterThan'
threshold: 70
}
scaleAction: {
direction: 'Increase'
type: 'ChangeCount'
value: '1'
cooldown: 'PT1M'
}
}
{
metricTrigger: {
metricName: 'Percentage CPU'
metricNamespace: 'Microsoft.Web/sites'
timeGrain: 'PT1M'
statistic: 'Average'
timeWindow: 'PT5M'
timeAggregation: 'Average'
operator: 'LessThan'
threshold: 30
}
scaleAction: {
direction: 'Decrease'
type: 'ChangeCount'
value: '1'
cooldown: 'PT1M'
}
}
]
}
]
enabled: true
targetResourceUri: appService.id
}
dependsOn: [
appService
]
}