mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
Fix lint errors in the gcp_secret_manager lookup plugin
This commit is contained in:
parent
22804f0cdc
commit
78b36fe3b6
1 changed files with 3 additions and 3 deletions
|
@ -5,9 +5,8 @@ from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
author:
|
|
||||||
- Dave Costakos <dcostako@redhat.com>
|
|
||||||
name: gcp_secret_manager
|
name: gcp_secret_manager
|
||||||
|
author: Dave Costakos (@davecostakos) <dcostako@redhat.com>
|
||||||
short_description: Get Secrets from Google Cloud as a Lookup plugin
|
short_description: Get Secrets from Google Cloud as a Lookup plugin
|
||||||
description:
|
description:
|
||||||
- retrieve secret keys in Secret Manager for use in playbooks
|
- retrieve secret keys in Secret Manager for use in playbooks
|
||||||
|
@ -59,7 +58,7 @@ DOCUMENTATION = '''
|
||||||
description:
|
description:
|
||||||
- JSON Object representing the contents of a service_account_file obtained from Google Cloud
|
- JSON Object representing the contents of a service_account_file obtained from Google Cloud
|
||||||
- defaults to OS env variable GCP_SERVICE_ACCOUNT_INFO if not present
|
- defaults to OS env variable GCP_SERVICE_ACCOUNT_INFO if not present
|
||||||
type: jsonarg
|
type: str
|
||||||
required: False
|
required: False
|
||||||
access_token:
|
access_token:
|
||||||
description:
|
description:
|
||||||
|
@ -84,6 +83,7 @@ DOCUMENTATION = '''
|
||||||
description:
|
description:
|
||||||
- Authenticaiton scopes for Google Secret Manager
|
- Authenticaiton scopes for Google Secret Manager
|
||||||
type: list
|
type: list
|
||||||
|
elements: str
|
||||||
default: ["https://www.googleapis.com/auth/cloud-platform"]
|
default: ["https://www.googleapis.com/auth/cloud-platform"]
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue