mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 04:11:25 -07:00
GCP IAM Role (#53490)
* GCP IAM Role * module util file * test fix * unit tests * test fixes * doc fragment fixes * test fixes * test fix
This commit is contained in:
parent
1b48e47717
commit
08918c6c2b
7 changed files with 469 additions and 3 deletions
|
@ -18,6 +18,12 @@ options:
|
|||
type: str
|
||||
required: true
|
||||
choices: [ application, machineaccount, serviceaccount ]
|
||||
service_account_contents:
|
||||
description:
|
||||
- A string representing the contents of a Service Account JSON file.
|
||||
- This should not be passed in as a dictionary, but a string
|
||||
that has the exact contents of a service account json file (valid JSON)
|
||||
type: str
|
||||
service_account_file:
|
||||
description:
|
||||
- The path of a Service Account JSON file if serviceaccount is selected as type.
|
||||
|
@ -36,6 +42,8 @@ notes:
|
|||
C(GCP_SERVICE_ACCOUNT_FILE) env variable.
|
||||
- For authentication, you can set service_account_email using the
|
||||
C(GCP_SERVICE_ACCOUNT_EMAIL) env variable.
|
||||
- For authentication, you can set service_account_contents using the
|
||||
C(GCP_SERVICE_ACCOUNT_CONTENTS) env variable.
|
||||
- For authentication, you can set auth_kind using the C(GCP_AUTH_KIND) env
|
||||
variable.
|
||||
- For authentication, you can set scopes using the C(GCP_SCOPES) env variable.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue