fix: iam service account key path must not exist (#576)

Update docs to explain that the json secret key must not
already exist, or the module will try to read it.

fixes #370
This commit is contained in:
Yusuke Tsutsumi 2023-07-07 22:05:09 +00:00 committed by GitHub
parent 30a4e66363
commit d1277f829b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,8 +71,9 @@ options:
type: dict type: dict
path: path:
description: description:
- The full name of the file that will hold the service account private key. The - The full name of the file that will hold the service account private key.
management of this file will depend on the value of sync_file parameter. - If the file already exists, it will attempt to be read. Ensure the file does
not exist or is alreay a valid key.
- File path must be absolute. - File path must be absolute.
required: false required: false
type: path type: path
@ -192,8 +193,9 @@ serviceAccount:
type: dict type: dict
path: path:
description: description:
- The full name of the file that will hold the service account private key. The - The full name of the file that will hold the service account private key.
management of this file will depend on the value of sync_file parameter. - If the file already exists, it will attempt to be read. Ensure the file does
not exist or is alreay a valid key.
- File path must be absolute. - File path must be absolute.
returned: success returned: success
type: str type: str