Skip to content

Commit

Permalink
feat: avm/res/db-for-postgresql/flexible server (#3088)
Browse files Browse the repository at this point in the history
## Description

Added support for PostgeSQL version 16.

closes #2203 
closes #1310 

## Pipeline Reference

<!-- Insert your Pipeline Status Badge below -->

| Pipeline |
| -------- |
|
[![avm.res.db-for-postgre-sql.flexible-server](https://github.com/arnoldna/bicep-registry-modules/actions/workflows/avm.res.db-for-postgre-sql.flexible-server.yml/badge.svg?branch=avm%2Fres%2Fdb-for-postgre-sql%2Fflexible-server)](https://github.com/arnoldna/bicep-registry-modules/actions/workflows/avm.res.db-for-postgre-sql.flexible-server.yml)
|

## Type of Change

<!-- Use the checkboxes [x] on the options that are relevant. -->

- [ ] Update to CI Environment or utilities (Non-module affecting
changes)
- [X] Azure Verified Module updates:
- [ ] Bugfix containing backwards-compatible bug fixes, and I have NOT
bumped the MAJOR or MINOR version in `version.json`:
- [X] Someone has opened a bug report issue, and I have included "Closes
#{bug_report_issue_number}" in the PR description.
- [ ] The bug was found by the module author, and no one has opened an
issue to report it yet.
- [ ] Feature update backwards compatible feature updates, and I have
bumped the MINOR version in `version.json`.
- [ ] Breaking changes and I have bumped the MAJOR version in
`version.json`.
  - [X] Update to documentation

## Checklist

- [X] I'm sure there are no other open Pull Requests for the same
update/change
- [X] I have run `Set-AVMModule` locally to generate the supporting
module files.
- [X] My corresponding pipelines / checks run clean and green without
any errors or warnings

<!-- Please keep up to date with the contribution guide at
https://aka.ms/avm/contribute/bicep -->
  • Loading branch information
arnoldna authored Aug 22, 2024
1 parent 073f92e commit 6d4b40d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
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

0 comments on commit 6d4b40d

Please sign in to comment.