diff --git a/lib/ansible/modules/cloud/google/gcdns_record.py b/lib/ansible/modules/cloud/google/gcdns_record.py index a96e016c972..e64da8a7cdc 100644 --- a/lib/ansible/modules/cloud/google/gcdns_record.py +++ b/lib/ansible/modules/cloud/google/gcdns_record.py @@ -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 diff --git a/test/sanity/import/skip.txt b/test/sanity/import/skip.txt index cc3f7a09785..de655cb063c 100644 --- a/test/sanity/import/skip.txt +++ b/test/sanity/import/skip.txt @@ -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