mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
gcdns_record: fix broken import (#34024)
This commit is contained in:
parent
1df57ac1ac
commit
107934241e
2 changed files with 3 additions and 4 deletions
|
@ -319,8 +319,11 @@ try:
|
|||
from libcloud.dns.types import RecordDoesNotExistError
|
||||
from libcloud.dns.types import ZoneDoesNotExistError
|
||||
HAS_LIBCLOUD = True
|
||||
# The libcloud Google Cloud DNS provider.
|
||||
PROVIDER = Provider.GOOGLE
|
||||
except ImportError:
|
||||
HAS_LIBCLOUD = False
|
||||
PROVIDER = None
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.gcdns import gcdns_connect
|
||||
|
@ -335,9 +338,6 @@ from ansible.module_utils.gcdns import gcdns_connect
|
|||
# deprecated and decommissioned.
|
||||
MINIMUM_LIBCLOUD_VERSION = '0.19.0'
|
||||
|
||||
# The libcloud Google Cloud DNS provider.
|
||||
PROVIDER = Provider.GOOGLE
|
||||
|
||||
# The records that libcloud's Google Cloud DNS provider supports.
|
||||
#
|
||||
# Libcloud has a RECORD_TYPE_MAP dictionary in the provider that also contains
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue