Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: avm/res/db-for-postgresql/flexible server #3088

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion avm/res/db-for-postgre-sql/flexible-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1518,7 +1518,7 @@ PostgreSQL Server version.

- Required: No
- Type: string
- Default: `'15'`
- Default: `'16'`
- Allowed:
```Bicep
[
Expand All @@ -1527,6 +1527,7 @@ PostgreSQL Server version.
'13'
'14'
'15'
'16'
]
```

Expand Down
3 changes: 2 additions & 1 deletion avm/res/db-for-postgre-sql/flexible-server/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ param storageSizeGB int = 32
'13'
'14'
'15'
'16'
])
@description('Optional. PostgreSQL Server version.')
param version string = '15'
param version string = '16'

@allowed([
'Disabled'
Expand Down
7 changes: 4 additions & 3 deletions avm/res/db-for-postgre-sql/flexible-server/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "11155893103946575130"
"templateHash": "6369286683210643119"
},
"name": "DBforPostgreSQL Flexible Servers",
"description": "This module deploys a DBforPostgreSQL Flexible Server.",
Expand Down Expand Up @@ -413,13 +413,14 @@
},
"version": {
"type": "string",
"defaultValue": "15",
"defaultValue": "16",
"allowedValues": [
"11",
"12",
"13",
"14",
"15"
"15",
"16"
],
"metadata": {
"description": "Optional. PostgreSQL Server version."
Expand Down
Loading