We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a5aa1 commit eb962cdCopy full SHA for eb962cd
.github/actions/createPostgresqlFlexibleServer/action.yml
@@ -32,7 +32,7 @@ runs:
32
id: setup-postgresql
33
uses: azure/CLI@v1
34
with:
35
- azcliversion: ${{ inputs.azCliVersion }}
+ azcliversion: ${{ env.azCliVersion }}
36
inlineScript: |
37
echo "Deploy DB with name " ${{ inputs.dbName }}
38
az postgres flexible-server create \
@@ -45,7 +45,6 @@ runs:
45
--public-access 0.0.0.0 \
46
--tier Burstable \
47
--sku-name Standard_B1ms \
48
- --private-dns-zone zone$(date +%s) \
49
--yes
50
51
az postgres flexible-server db create \
@@ -60,4 +59,4 @@ runs:
60
59
-n ${{ inputs.dbName }} \
61
-r "AllowAllWindowsAzureIps" \
62
--start-ip-address "0.0.0.0" \
63
- --end-ip-address "0.0.0.0"
+ --end-ip-address "0.0.0.0"
0 commit comments