mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
gcdns_record: fix broken import (#34024)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -4,7 +4,6 @@ lib/ansible/modules/cloud/azure/azure.py
|
||||
lib/ansible/modules/cloud/azure/azure_rm_dnsrecordset.py
|
||||
lib/ansible/modules/cloud/centurylink/clc_firewall_policy.py
|
||||
lib/ansible/modules/cloud/dimensiondata/dimensiondata_network.py
|
||||
lib/ansible/modules/cloud/google/gcdns_record.py
|
||||
lib/ansible/modules/cloud/google/gcdns_zone.py
|
||||
lib/ansible/modules/cloud/webfaction/webfaction_app.py
|
||||
lib/ansible/modules/cloud/webfaction/webfaction_db.py
|
||||
|
||||
Reference in New Issue
Block a user