File tree Expand file tree Collapse file tree 8 files changed +18
-17
lines changed Expand file tree Collapse file tree 8 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -38,24 +38,24 @@ resource postgresServer 'Microsoft.DBforPostgreSQL/flexibleServers@2022-12-01' =
38
38
resource firewall_all 'firewallRules' = if (allowAllIPsFirewall ) {
39
39
name : 'allow-all-IPs'
40
40
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'
43
43
}
44
44
}
45
45
46
46
resource firewall_azure 'firewallRules' = if (allowAzureIPsFirewall ) {
47
47
name : 'allow-all-azure-internal-IPs'
48
48
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'
51
51
}
52
52
}
53
53
54
54
resource firewall_single 'firewallRules' = [for ip in allowedSingleIPs : {
55
55
name : 'allow-single-${replace (ip , '.' , '' )}'
56
56
properties : {
57
- startIpAddress : ip
58
- endIpAddress : ip
57
+ startIpAddress : ip
58
+ endIpAddress : ip
59
59
}
60
60
}]
61
61
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ param name string
6
6
@description ('The agent pool configuration' )
7
7
param config object
8
8
9
- resource aksCluster 'Microsoft.ContainerService/managedClusters@2022-11 -02-preview' existing = {
9
+ resource aksCluster 'Microsoft.ContainerService/managedClusters@2023-01 -02-preview' existing = {
10
10
name : clusterName
11
11
}
12
12
13
- resource nodePool 'Microsoft.ContainerService/managedClusters/agentPools@2022-11 -02-preview' = {
13
+ resource nodePool 'Microsoft.ContainerService/managedClusters/agentPools@2023-01 -02-preview' = {
14
14
parent : aksCluster
15
15
name : name
16
16
properties : config
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ param networkPolicy string = 'azure'
46
46
param disableLocalAccounts bool = false
47
47
48
48
@description ('The managed cluster SKU.' )
49
- @allowed ([ 'Paid' , 'Free ' ])
49
+ @allowed ([ 'Free' , ' Paid' , 'Standard ' ])
50
50
param sku string = 'Free'
51
51
52
52
@description ('Configuration of AKS add-ons' )
@@ -61,15 +61,15 @@ param systemPoolConfig object
61
61
@description ('The DNS prefix to associate with the AKS cluster' )
62
62
param dnsPrefix string = ''
63
63
64
- resource aks 'Microsoft.ContainerService/managedClusters@2022-11- 02-preview ' = {
64
+ resource aks 'Microsoft.ContainerService/managedClusters@2023- 02-01 ' = {
65
65
name : name
66
66
location : location
67
67
tags : tags
68
68
identity : {
69
69
type : 'SystemAssigned'
70
70
}
71
71
sku : {
72
- name : 'Basic '
72
+ name : 'Base '
73
73
tier : sku
74
74
}
75
75
properties : {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ param tags object = {}
4
4
5
5
@description ('The pricing tier of this CDN profile' )
6
6
@allowed ([
7
- 'Custom_Verizon'
7
+ 'Custom_Verizon'
8
8
'Premium_AzureFrontDoor'
9
9
'Premium_Verizon'
10
10
'StandardPlus_955BandWidth_ChinaCdn'
Original file line number Diff line number Diff line change 4
4
version : 3.0.0
5
5
title : Simple Todo API
6
6
contact :
7
- email : wabrez @microsoft.com
7
+ email : azdevteam @microsoft.com
8
8
9
9
components :
10
10
schemas :
Original file line number Diff line number Diff line change 11
11
<PackageReference Include =" Azure.Extensions.AspNetCore.Configuration.Secrets" Version =" 1.2.1" />
12
12
<PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 6.0.1" />
13
13
<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" />
15
15
<PackageReference Include =" Swashbuckle.AspNetCore.SwaggerUI" Version =" 6.4.0" />
16
+ <PackageReference Include =" System.Drawing.Common" Version =" 5.0.3" />
16
17
</ItemGroup >
17
18
</Project >
Original file line number Diff line number Diff line change 4
4
version : 3.0.0
5
5
title : Simple Todo API
6
6
contact :
7
- email : wabrez @microsoft.com
7
+ email : azdevteam @microsoft.com
8
8
9
9
components :
10
10
schemas :
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ import dotenv from "dotenv";
9
9
*/
10
10
const config : PlaywrightTestConfig = {
11
11
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 ,
14
14
expect : {
15
15
/**
16
16
* Maximum time expect() should wait for the condition to be met.
You can’t perform that action at this time.
0 commit comments