Skip to content

Commit eb962cd

Browse files
committed
Update action.yml
1 parent d6a5aa1 commit eb962cd

File tree

1 file changed

+2
-3
lines changed
  • .github/actions/createPostgresqlFlexibleServer

1 file changed

+2
-3
lines changed

.github/actions/createPostgresqlFlexibleServer/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
id: setup-postgresql
3333
uses: azure/CLI@v1
3434
with:
35-
azcliversion: ${{ inputs.azCliVersion }}
35+
azcliversion: ${{ env.azCliVersion }}
3636
inlineScript: |
3737
echo "Deploy DB with name " ${{ inputs.dbName }}
3838
az postgres flexible-server create \
@@ -45,7 +45,6 @@ runs:
4545
--public-access 0.0.0.0 \
4646
--tier Burstable \
4747
--sku-name Standard_B1ms \
48-
--private-dns-zone zone$(date +%s) \
4948
--yes
5049
5150
az postgres flexible-server db create \
@@ -60,4 +59,4 @@ runs:
6059
-n ${{ inputs.dbName }} \
6160
-r "AllowAllWindowsAzureIps" \
6261
--start-ip-address "0.0.0.0" \
63-
--end-ip-address "0.0.0.0"
62+
--end-ip-address "0.0.0.0"

0 commit comments

Comments
 (0)