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)).
pull/47003/merge
Guido García 6 years ago committed by Zim Kalinowski
parent 04dd21dabb
commit 8f3c29a98f

@ -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…
Cancel
Save