Skip to content

Commit a9424c8

Browse files
committed
Synchronize repo from Repoman
1 parent da9e502 commit a9424c8

File tree

8 files changed

+18
-17
lines changed

8 files changed

+18
-17
lines changed

infra/core/database/postgresql/flexibleserver.bicep

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,24 +38,24 @@ resource postgresServer 'Microsoft.DBforPostgreSQL/flexibleServers@2022-12-01' =
3838
resource firewall_all 'firewallRules' = if (allowAllIPsFirewall) {
3939
name: 'allow-all-IPs'
4040
properties: {
41-
startIpAddress: '0.0.0.0'
42-
endIpAddress: '255.255.255.255'
41+
startIpAddress: '0.0.0.0'
42+
endIpAddress: '255.255.255.255'
4343
}
4444
}
4545

4646
resource firewall_azure 'firewallRules' = if (allowAzureIPsFirewall) {
4747
name: 'allow-all-azure-internal-IPs'
4848
properties: {
49-
startIpAddress: '0.0.0.0'
50-
endIpAddress: '0.0.0.0'
49+
startIpAddress: '0.0.0.0'
50+
endIpAddress: '0.0.0.0'
5151
}
5252
}
5353

5454
resource firewall_single 'firewallRules' = [for ip in allowedSingleIPs: {
5555
name: 'allow-single-${replace(ip, '.', '')}'
5656
properties: {
57-
startIpAddress: ip
58-
endIpAddress: ip
57+
startIpAddress: ip
58+
endIpAddress: ip
5959
}
6060
}]
6161

infra/core/host/aks-agent-pool.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ param name string
66
@description('The agent pool configuration')
77
param config object
88

9-
resource aksCluster 'Microsoft.ContainerService/managedClusters@2022-11-02-preview' existing = {
9+
resource aksCluster 'Microsoft.ContainerService/managedClusters@2023-01-02-preview' existing = {
1010
name: clusterName
1111
}
1212

13-
resource nodePool 'Microsoft.ContainerService/managedClusters/agentPools@2022-11-02-preview' = {
13+
resource nodePool 'Microsoft.ContainerService/managedClusters/agentPools@2023-01-02-preview' = {
1414
parent: aksCluster
1515
name: name
1616
properties: config

infra/core/host/aks-managed-cluster.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ param networkPolicy string = 'azure'
4646
param disableLocalAccounts bool = false
4747

4848
@description('The managed cluster SKU.')
49-
@allowed([ 'Paid', 'Free' ])
49+
@allowed([ 'Free', 'Paid', 'Standard' ])
5050
param sku string = 'Free'
5151

5252
@description('Configuration of AKS add-ons')
@@ -61,15 +61,15 @@ param systemPoolConfig object
6161
@description('The DNS prefix to associate with the AKS cluster')
6262
param dnsPrefix string = ''
6363

64-
resource aks 'Microsoft.ContainerService/managedClusters@2022-11-02-preview' = {
64+
resource aks 'Microsoft.ContainerService/managedClusters@2023-02-01' = {
6565
name: name
6666
location: location
6767
tags: tags
6868
identity: {
6969
type: 'SystemAssigned'
7070
}
7171
sku: {
72-
name: 'Basic'
72+
name: 'Base'
7373
tier: sku
7474
}
7575
properties: {

infra/core/networking/cdn-profile.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ param tags object = {}
44

55
@description('The pricing tier of this CDN profile')
66
@allowed([
7-
'Custom_Verizon'
7+
'Custom_Verizon'
88
'Premium_AzureFrontDoor'
99
'Premium_Verizon'
1010
'StandardPlus_955BandWidth_ChinaCdn'

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
version: 3.0.0
55
title: Simple Todo API
66
contact:
7-
email: wabrez@microsoft.com
7+
email: azdevteam@microsoft.com
88

99
components:
1010
schemas:

src/api/Todo.Api.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.2.1" />
1212
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.1" />
1313
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.0.1" />
14-
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.19.0" />
14+
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
1515
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.4.0" />
16+
<PackageReference Include="System.Drawing.Common" Version="5.0.3" />
1617
</ItemGroup>
1718
</Project>

src/api/wwwroot/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
version: 3.0.0
55
title: Simple Todo API
66
contact:
7-
email: wabrez@microsoft.com
7+
email: azdevteam@microsoft.com
88

99
components:
1010
schemas:

tests/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import dotenv from "dotenv";
99
*/
1010
const config: PlaywrightTestConfig = {
1111
testDir: ".",
12-
/* Maximum time one test can run for. */
13-
timeout: 240 * 1000,
12+
/* Maximum time one test can run for. Using 10 min per test */
13+
timeout: 10 * 60 * 1000,
1414
expect: {
1515
/**
1616
* Maximum time expect() should wait for the condition to be met.

0 commit comments

Comments
 (0)