mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
feat: support postgres 10 in azure_rm_postgresqlserver (#47003)
Add support to Azure Postgres 10.x (see [azure official docs](https://docs.microsoft.com/lv-lv/azure//postgresql/concepts-supported-versions)).
This commit is contained in:
parent
04dd21dabb
commit
8f3c29a98f
1 changed files with 3 additions and 3 deletions
|
@ -56,7 +56,7 @@ options:
|
||||||
version:
|
version:
|
||||||
description:
|
description:
|
||||||
- Server version.
|
- Server version.
|
||||||
choices: ['9.5', '9.6']
|
choices: ['9.5', '9.6', '10']
|
||||||
enforce_ssl:
|
enforce_ssl:
|
||||||
description:
|
description:
|
||||||
- Enable SSL enforcement.
|
- Enable SSL enforcement.
|
||||||
|
@ -114,7 +114,7 @@ id:
|
||||||
sample: /subscriptions/12345678-1234-1234-1234-123412341234/resourceGroups/samplerg/providers/Microsoft.DBforPostgreSQL/servers/mysqlsrv1b6dd89593
|
sample: /subscriptions/12345678-1234-1234-1234-123412341234/resourceGroups/samplerg/providers/Microsoft.DBforPostgreSQL/servers/mysqlsrv1b6dd89593
|
||||||
version:
|
version:
|
||||||
description:
|
description:
|
||||||
- 'Server version. Possible values include: C(9.5), C(9.6)'
|
- 'Server version. Possible values include: C(9.5), C(9.6), C(10)'
|
||||||
returned: always
|
returned: always
|
||||||
type: str
|
type: str
|
||||||
sample: 9.6
|
sample: 9.6
|
||||||
|
@ -173,7 +173,7 @@ class AzureRMServers(AzureRMModuleBase):
|
||||||
),
|
),
|
||||||
version=dict(
|
version=dict(
|
||||||
type='str',
|
type='str',
|
||||||
choices=['9.5', '9.6']
|
choices=['9.5', '9.6', '10']
|
||||||
),
|
),
|
||||||
enforce_ssl=dict(
|
enforce_ssl=dict(
|
||||||
type='bool',
|
type='bool',
|
||||||
|
|
Loading…
Reference in a new issue