Skip to content

Commit

Permalink
remove version 5.6, Update to version 5.7 (#626)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred-sun authored Sep 6, 2021
1 parent 0153e1e commit a464d7b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
7 changes: 3 additions & 4 deletions plugins/modules/azure_rm_mysqlserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
- Server version.
type: str
choices:
- 5.6
- 5.7
- 8.0
enforce_ssl:
Expand Down Expand Up @@ -142,7 +141,7 @@
geo_redundant_backup: Disabled
storage_autogrow: Disabled
enforce_ssl: True
version: 5.6
version: 5.7
admin_username: cloudsa
admin_password: password
'''
Expand All @@ -159,7 +158,7 @@
- Server version. Possible values include C(5.6), C(5.7), C(8.0).
returned: always
type: str
sample: 5.6
sample: 5.7
state:
description:
- A state of a server that is visible to user. Possible values include C(Ready), C(Dropping), C(Disabled).
Expand Down Expand Up @@ -233,7 +232,7 @@ def __init__(self):
),
version=dict(
type='str',
choices=['5.6', '5.7', '8.0']
choices=['5.7', '8.0']
),
enforce_ssl=dict(
type='bool',
Expand Down
12 changes: 6 additions & 6 deletions tests/integration/targets/azure_rm_mysqlserver/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
backup_retention_days: 7
geo_redundant_backup: Disabled
storage_autogrow: Disabled
version: 5.6
version: 5.7
enforce_ssl: True
admin_username: zimxyz
admin_password: Password123!
Expand All @@ -40,7 +40,7 @@
backup_retention_days: 7
geo_redundant_backup: Disabled
storage_autogrow: Disabled
version: 5.6
version: 5.7
enforce_ssl: True
admin_username: zimxyz
admin_password: Password123!
Expand All @@ -64,7 +64,7 @@
backup_retention_days: 7
geo_redundant_backup: Disabled
storage_autogrow: Disabled
version: 5.6
version: 5.7
enforce_ssl: True
admin_username: zimxyz
admin_password: Password123!
Expand All @@ -88,7 +88,7 @@
backup_retention_days: 7
geo_redundant_backup: Disabled
storage_autogrow: Disabled
version: 5.6
version: 5.7
enforce_ssl: True
admin_username: zimxyz
admin_password: Password123!
Expand Down Expand Up @@ -124,7 +124,7 @@
backup_retention_days: 7
geo_redundant_backup: Disabled
storage_autogrow: Disabled
version: 5.6
version: 5.7
enforce_ssl: True
admin_username: zimxyz
admin_password: Password123!
Expand All @@ -144,7 +144,7 @@
backup_retention_days: 7
geo_redundant_backup: Disabled
storage_autogrow: Disabled
version: 5.6
version: 5.7
enforce_ssl: True
admin_username: zimxyz
admin_password: Password123!
Expand Down

0 comments on commit a464d7b

Please sign in to comment.