Skip to content

Commit ce5c1b8

Browse files
authored
Fixed the spelling mistake (#26)
1 parent a7814f9 commit ce5c1b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/infra/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Create a `.runsettings` file in the `tests` directory (or the top level reposito
6262
<RunConfiguration>
6363
<EnvironmentVariables>
6464
<DATASYNC_AZSQL_CONNECTIONSTRING>{{connection string}}</DATASYNC_AZSQL_CONNECTIONSTRING>
65-
<DATASYNC_COSMOS_CONNECTIONSTRING>{{connection string}}</DATADSYNC_COSMOS_CONNECTIONSTRING>
65+
<DATASYNC_COSMOS_CONNECTIONSTRING>{{connection string}}</DATASYNC_COSMOS_CONNECTIONSTRING>
6666
<DATASYNC_PGSQL_CONNECTIONSTRING>{{connection string}}</DATASYNC_PGSQL_CONNECTIONSTRING>
6767
</EnvironmentVariables>
6868
</RunConfiguration>

tests/infra/databases/postgresql.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ resource server 'Microsoft.DBforPostgreSQL/flexibleServers@2023-06-01-preview' =
5555
version: '15'
5656
}
5757

58-
resource fw 'firewallRules' = [ for fwRule in clientIpFirewallRules : {
59-
name: '${fwRule.startIpAddress}-${fwRule.endIpAddress}'
58+
resource fw 'firewallRules' = [ for (fwRule, idx) in clientIpFirewallRules : {
59+
name: 'fw${idx}'
6060
properties: {
6161
startIpAddress: fwRule.startIpAddress
6262
endIpAddress: fwRule.endIpAddress

0 commit comments

Comments
 (0)