the last of the fixes

This commit is contained in:
Alex Stephen 2020-08-05 17:48:31 -07:00
parent 2abb508e2d
commit ab270a08dc
3 changed files with 6 additions and 3 deletions

View file

@ -288,7 +288,8 @@ class GcpModule(AnsibleModule):
scopes=dict(
required=False,
fallback=(env_fallback, ['GCP_SCOPES']),
type='list'),
type='list',
elements='str'),
env_type=dict(
required=False,
fallback=(env_fallback, ['GCP_ENV_TYPE']),

View file

@ -23,7 +23,6 @@ module: gcp_storage_object
description:
- Upload or download a file from a GCS bucket.
short_description: Creates a GCP Object
version_added: '2.8'
author: Google Inc. (@googlecloudplatform)
requirements:
- python >= 2.6
@ -87,6 +86,7 @@ options:
description:
- Array of scopes to be used
type: list
elements: str
env_type:
description:
- Specifies which Ansible environment you're running this module within.
@ -145,7 +145,7 @@ storage_class:
# Imports
################################################################################
from ansible.module_utils.gcp_utils import (
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
navigate_hash,
GcpSession,
GcpModule,

View file

@ -24,6 +24,8 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (Gcp
remove_nones_from_dict,
replace_resource_dict)
__metaclass__ = type
class ReplaceResourceDictTestCase(unittest.TestCase):
def test_given_dict(self):