diff --git a/plugins/doc_fragments/gcp.py b/plugins/doc_fragments/gcp.py index a2d5212..4f2e7ca 100644 --- a/plugins/doc_fragments/gcp.py +++ b/plugins/doc_fragments/gcp.py @@ -21,7 +21,7 @@ options: - The type of credential used. type: str required: true - choices: [ application, machineaccount, serviceaccount ] + choices: [ application, machineaccount, serviceaccount, impersonation ] service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a JSON string that represents it. diff --git a/plugins/inventory/gcp_compute.py b/plugins/inventory/gcp_compute.py index 69fb4b7..d6b1929 100644 --- a/plugins/inventory/gcp_compute.py +++ b/plugins/inventory/gcp_compute.py @@ -61,7 +61,7 @@ DOCUMENTATION = """ description: - The type of credential used. required: True - choices: ['application', 'serviceaccount', 'machineaccount', 'accesstoken'] + choices: ['application', 'serviceaccount', 'machineaccount', 'accesstoken', 'impersonation'] env: - name: GCP_AUTH_KIND scopes: @@ -89,6 +89,7 @@ DOCUMENTATION = """ description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. env: - name: GCP_SERVICE_ACCOUNT_EMAIL access_token: diff --git a/plugins/module_utils/gcp_utils.py b/plugins/module_utils/gcp_utils.py index baf9a6c..b540275 100644 --- a/plugins/module_utils/gcp_utils.py +++ b/plugins/module_utils/gcp_utils.py @@ -17,6 +17,7 @@ except ImportError: try: import google.auth import google.auth.compute_engine + import google.auth.impersonated_credentials from google.oauth2 import service_account, credentials as oauth2 from google.auth.transport.requests import AuthorizedSession HAS_GOOGLE_LIBRARIES = True @@ -200,9 +201,9 @@ class GcpSession(object): if not HAS_GOOGLE_LIBRARIES: self.module.fail_json(msg="Please install the google-auth library") - if self.module.params.get('service_account_email') is not None and self.module.params['auth_kind'] != 'machineaccount': + if self.module.params.get('service_account_email') is not None and not self.module.params['auth_kind'] in ['machineaccount','impersonation']: self.module.fail_json( - msg="Service Account Email only works with Machine Account-based authentication" + msg="Service Account Email only works with Impersonation and Machine Account-based authentication" ) if (self.module.params.get('service_account_file') is not None or @@ -260,6 +261,20 @@ class GcpSession(object): msg='An access token must be supplied when auth_kind is accesstoken' ) return oauth2.Credentials(access_token, scopes=self.module.params['scopes']) + + if cred_type == 'impersonation': + service_account_email = self.module.params.get('service_account_email') + if service_account_email is None: + self.module.fail_json( + msg='Service Account impersonation authentication requires setting service_account_email' + ) + source_credentials, _ = google.auth.default() + return google.auth.impersonated_credentials.Credentials( + source_credentials=source_credentials, + target_principal=self.module.params['service_account_email'], + target_scopes=self.module.params['scopes'], + lifetime=3600, + ) self.module.fail_json(msg="Credential type '%s' not implemented" % cred_type) @@ -291,7 +306,7 @@ class GcpModule(AnsibleModule): auth_kind=dict( required=True, fallback=(env_fallback, ['GCP_AUTH_KIND']), - choices=['machineaccount', 'serviceaccount', 'accesstoken', 'application'], + choices=['machineaccount', 'serviceaccount', 'accesstoken', 'application', 'impersonation'], type='str'), service_account_email=dict( required=False, diff --git a/plugins/modules/gcp_appengine_firewall_rule.py b/plugins/modules/gcp_appengine_firewall_rule.py index f0dbd61..b59730d 100644 --- a/plugins/modules/gcp_appengine_firewall_rule.py +++ b/plugins/modules/gcp_appengine_firewall_rule.py @@ -88,6 +88,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -101,6 +102,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_appengine_firewall_rule_info.py b/plugins/modules/gcp_appengine_firewall_rule_info.py index ad9a22a..26ba5b8 100644 --- a/plugins/modules/gcp_appengine_firewall_rule_info.py +++ b/plugins/modules/gcp_appengine_firewall_rule_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_bigquery_dataset.py b/plugins/modules/gcp_bigquery_dataset.py index efc365a..b63074a 100644 --- a/plugins/modules/gcp_bigquery_dataset.py +++ b/plugins/modules/gcp_bigquery_dataset.py @@ -225,6 +225,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -238,6 +239,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_bigquery_dataset_info.py b/plugins/modules/gcp_bigquery_dataset_info.py index d972b37..6e1e559 100644 --- a/plugins/modules/gcp_bigquery_dataset_info.py +++ b/plugins/modules/gcp_bigquery_dataset_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_bigquery_table.py b/plugins/modules/gcp_bigquery_table.py index 0eaebb1..6be8d53 100644 --- a/plugins/modules/gcp_bigquery_table.py +++ b/plugins/modules/gcp_bigquery_table.py @@ -479,6 +479,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -492,6 +493,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_bigquery_table_info.py b/plugins/modules/gcp_bigquery_table_info.py index 40d0ae2..1e917cc 100644 --- a/plugins/modules/gcp_bigquery_table_info.py +++ b/plugins/modules/gcp_bigquery_table_info.py @@ -71,6 +71,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_bigtable_instance.py b/plugins/modules/gcp_bigtable_instance.py index e219cb2..09e93aa 100644 --- a/plugins/modules/gcp_bigtable_instance.py +++ b/plugins/modules/gcp_bigtable_instance.py @@ -118,6 +118,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -131,6 +132,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_bigtable_instance_info.py b/plugins/modules/gcp_bigtable_instance_info.py index 5336f9e..3a237ac 100644 --- a/plugins/modules/gcp_bigtable_instance_info.py +++ b/plugins/modules/gcp_bigtable_instance_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudbuild_trigger.py b/plugins/modules/gcp_cloudbuild_trigger.py index 218135a..d7dc957 100644 --- a/plugins/modules/gcp_cloudbuild_trigger.py +++ b/plugins/modules/gcp_cloudbuild_trigger.py @@ -728,6 +728,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -741,6 +742,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudbuild_trigger_info.py b/plugins/modules/gcp_cloudbuild_trigger_info.py index 2f6fcfd..12cdd13 100644 --- a/plugins/modules/gcp_cloudbuild_trigger_info.py +++ b/plugins/modules/gcp_cloudbuild_trigger_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudfunctions_cloud_function.py b/plugins/modules/gcp_cloudfunctions_cloud_function.py index e09ed7b..5c1b1ad 100644 --- a/plugins/modules/gcp_cloudfunctions_cloud_function.py +++ b/plugins/modules/gcp_cloudfunctions_cloud_function.py @@ -175,6 +175,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -188,6 +189,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudfunctions_cloud_function_info.py b/plugins/modules/gcp_cloudfunctions_cloud_function_info.py index 778f2b5..69b9137 100644 --- a/plugins/modules/gcp_cloudfunctions_cloud_function_info.py +++ b/plugins/modules/gcp_cloudfunctions_cloud_function_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudscheduler_job.py b/plugins/modules/gcp_cloudscheduler_job.py index e2adf59..79d496a 100644 --- a/plugins/modules/gcp_cloudscheduler_job.py +++ b/plugins/modules/gcp_cloudscheduler_job.py @@ -311,6 +311,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -324,6 +325,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudscheduler_job_info.py b/plugins/modules/gcp_cloudscheduler_job_info.py index 0c03f71..aff2301 100644 --- a/plugins/modules/gcp_cloudscheduler_job_info.py +++ b/plugins/modules/gcp_cloudscheduler_job_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudtasks_queue.py b/plugins/modules/gcp_cloudtasks_queue.py index f8b98f4..e0c9a09 100644 --- a/plugins/modules/gcp_cloudtasks_queue.py +++ b/plugins/modules/gcp_cloudtasks_queue.py @@ -189,6 +189,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -202,6 +203,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_cloudtasks_queue_info.py b/plugins/modules/gcp_cloudtasks_queue_info.py index f006fe8..e70fe4b 100644 --- a/plugins/modules/gcp_cloudtasks_queue_info.py +++ b/plugins/modules/gcp_cloudtasks_queue_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_address.py b/plugins/modules/gcp_compute_address.py index 55fd596..87800b5 100644 --- a/plugins/modules/gcp_compute_address.py +++ b/plugins/modules/gcp_compute_address.py @@ -154,6 +154,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -167,6 +168,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_address_info.py b/plugins/modules/gcp_compute_address_info.py index b919a30..b52e12b 100644 --- a/plugins/modules/gcp_compute_address_info.py +++ b/plugins/modules/gcp_compute_address_info.py @@ -66,6 +66,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -79,6 +80,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_autoscaler.py b/plugins/modules/gcp_compute_autoscaler.py index 267116f..e4f627c 100644 --- a/plugins/modules/gcp_compute_autoscaler.py +++ b/plugins/modules/gcp_compute_autoscaler.py @@ -261,6 +261,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -274,6 +275,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_autoscaler_info.py b/plugins/modules/gcp_compute_autoscaler_info.py index f908fec..b6e9cb2 100644 --- a/plugins/modules/gcp_compute_autoscaler_info.py +++ b/plugins/modules/gcp_compute_autoscaler_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_backend_bucket.py b/plugins/modules/gcp_compute_backend_bucket.py index 420b593..f3cc242 100644 --- a/plugins/modules/gcp_compute_backend_bucket.py +++ b/plugins/modules/gcp_compute_backend_bucket.py @@ -175,6 +175,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -188,6 +189,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_backend_bucket_info.py b/plugins/modules/gcp_compute_backend_bucket_info.py index 8a50429..5dd11ea 100644 --- a/plugins/modules/gcp_compute_backend_bucket_info.py +++ b/plugins/modules/gcp_compute_backend_bucket_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_backend_service.py b/plugins/modules/gcp_compute_backend_service.py index 6decbc8..4242ebb 100644 --- a/plugins/modules/gcp_compute_backend_service.py +++ b/plugins/modules/gcp_compute_backend_service.py @@ -709,6 +709,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -722,6 +723,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_backend_service_info.py b/plugins/modules/gcp_compute_backend_service_info.py index 54171d6..81bd833 100644 --- a/plugins/modules/gcp_compute_backend_service_info.py +++ b/plugins/modules/gcp_compute_backend_service_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_disk.py b/plugins/modules/gcp_compute_disk.py index d3880ee..674bd5a 100644 --- a/plugins/modules/gcp_compute_disk.py +++ b/plugins/modules/gcp_compute_disk.py @@ -239,6 +239,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -252,6 +253,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_disk_info.py b/plugins/modules/gcp_compute_disk_info.py index c8e4be1..99c1558 100644 --- a/plugins/modules/gcp_compute_disk_info.py +++ b/plugins/modules/gcp_compute_disk_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_external_vpn_gateway.py b/plugins/modules/gcp_compute_external_vpn_gateway.py index e2d96b1..602ef05 100644 --- a/plugins/modules/gcp_compute_external_vpn_gateway.py +++ b/plugins/modules/gcp_compute_external_vpn_gateway.py @@ -105,6 +105,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -118,6 +119,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_external_vpn_gateway_info.py b/plugins/modules/gcp_compute_external_vpn_gateway_info.py index ffd36e4..3b6c6c7 100644 --- a/plugins/modules/gcp_compute_external_vpn_gateway_info.py +++ b/plugins/modules/gcp_compute_external_vpn_gateway_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_firewall.py b/plugins/modules/gcp_compute_firewall.py index cee64bc..b801332 100644 --- a/plugins/modules/gcp_compute_firewall.py +++ b/plugins/modules/gcp_compute_firewall.py @@ -264,6 +264,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -277,6 +278,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_firewall_info.py b/plugins/modules/gcp_compute_firewall_info.py index e5cb830..ce989ae 100644 --- a/plugins/modules/gcp_compute_firewall_info.py +++ b/plugins/modules/gcp_compute_firewall_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_forwarding_rule.py b/plugins/modules/gcp_compute_forwarding_rule.py index 8141605..01db735 100644 --- a/plugins/modules/gcp_compute_forwarding_rule.py +++ b/plugins/modules/gcp_compute_forwarding_rule.py @@ -238,6 +238,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -251,6 +252,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_forwarding_rule_info.py b/plugins/modules/gcp_compute_forwarding_rule_info.py index d8a8e58..46ff34e 100644 --- a/plugins/modules/gcp_compute_forwarding_rule_info.py +++ b/plugins/modules/gcp_compute_forwarding_rule_info.py @@ -66,6 +66,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -79,6 +80,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_global_address.py b/plugins/modules/gcp_compute_global_address.py index 2281535..af8c6a7 100644 --- a/plugins/modules/gcp_compute_global_address.py +++ b/plugins/modules/gcp_compute_global_address.py @@ -125,6 +125,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -138,6 +139,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_global_address_info.py b/plugins/modules/gcp_compute_global_address_info.py index 377b5f4..2d98dee 100644 --- a/plugins/modules/gcp_compute_global_address_info.py +++ b/plugins/modules/gcp_compute_global_address_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_global_forwarding_rule.py b/plugins/modules/gcp_compute_global_forwarding_rule.py index 158caab..6b66f6f 100644 --- a/plugins/modules/gcp_compute_global_forwarding_rule.py +++ b/plugins/modules/gcp_compute_global_forwarding_rule.py @@ -218,6 +218,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -231,6 +232,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_global_forwarding_rule_info.py b/plugins/modules/gcp_compute_global_forwarding_rule_info.py index 68f9de4..5264348 100644 --- a/plugins/modules/gcp_compute_global_forwarding_rule_info.py +++ b/plugins/modules/gcp_compute_global_forwarding_rule_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_health_check.py b/plugins/modules/gcp_compute_health_check.py index 54ab300..0fadd55 100644 --- a/plugins/modules/gcp_compute_health_check.py +++ b/plugins/modules/gcp_compute_health_check.py @@ -472,6 +472,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -485,6 +486,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_health_check_info.py b/plugins/modules/gcp_compute_health_check_info.py index 78662af..7331c5d 100644 --- a/plugins/modules/gcp_compute_health_check_info.py +++ b/plugins/modules/gcp_compute_health_check_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_http_health_check.py b/plugins/modules/gcp_compute_http_health_check.py index ee1bae3..185cdab 100644 --- a/plugins/modules/gcp_compute_http_health_check.py +++ b/plugins/modules/gcp_compute_http_health_check.py @@ -126,6 +126,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -139,6 +140,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_http_health_check_info.py b/plugins/modules/gcp_compute_http_health_check_info.py index cfd394d..4f0f44b 100644 --- a/plugins/modules/gcp_compute_http_health_check_info.py +++ b/plugins/modules/gcp_compute_http_health_check_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_https_health_check.py b/plugins/modules/gcp_compute_https_health_check.py index cd38bb1..1974b9b 100644 --- a/plugins/modules/gcp_compute_https_health_check.py +++ b/plugins/modules/gcp_compute_https_health_check.py @@ -123,6 +123,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -136,6 +137,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_https_health_check_info.py b/plugins/modules/gcp_compute_https_health_check_info.py index 4597ca3..23c3ed7 100644 --- a/plugins/modules/gcp_compute_https_health_check_info.py +++ b/plugins/modules/gcp_compute_https_health_check_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_image.py b/plugins/modules/gcp_compute_image.py index 741536e..d4bc9e8 100644 --- a/plugins/modules/gcp_compute_image.py +++ b/plugins/modules/gcp_compute_image.py @@ -230,6 +230,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -243,6 +244,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_image_info.py b/plugins/modules/gcp_compute_image_info.py index dff5da9..ba2189e 100644 --- a/plugins/modules/gcp_compute_image_info.py +++ b/plugins/modules/gcp_compute_image_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance.py b/plugins/modules/gcp_compute_instance.py index 3c30338..3cd505f 100644 --- a/plugins/modules/gcp_compute_instance.py +++ b/plugins/modules/gcp_compute_instance.py @@ -523,6 +523,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -536,6 +537,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance_group.py b/plugins/modules/gcp_compute_instance_group.py index 8f65b4b..bede053 100644 --- a/plugins/modules/gcp_compute_instance_group.py +++ b/plugins/modules/gcp_compute_instance_group.py @@ -139,6 +139,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -152,6 +153,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance_group_info.py b/plugins/modules/gcp_compute_instance_group_info.py index da030c5..cb948b3 100644 --- a/plugins/modules/gcp_compute_instance_group_info.py +++ b/plugins/modules/gcp_compute_instance_group_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance_group_manager.py b/plugins/modules/gcp_compute_instance_group_manager.py index 776503d..fff618b 100644 --- a/plugins/modules/gcp_compute_instance_group_manager.py +++ b/plugins/modules/gcp_compute_instance_group_manager.py @@ -137,6 +137,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -150,6 +151,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance_group_manager_info.py b/plugins/modules/gcp_compute_instance_group_manager_info.py index 5caf7c2..25e66cb 100644 --- a/plugins/modules/gcp_compute_instance_group_manager_info.py +++ b/plugins/modules/gcp_compute_instance_group_manager_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance_info.py b/plugins/modules/gcp_compute_instance_info.py index 22d87e9..126a9f5 100644 --- a/plugins/modules/gcp_compute_instance_info.py +++ b/plugins/modules/gcp_compute_instance_info.py @@ -69,6 +69,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -82,6 +83,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance_template.py b/plugins/modules/gcp_compute_instance_template.py index 4eb1a7c..7c8a8d8 100644 --- a/plugins/modules/gcp_compute_instance_template.py +++ b/plugins/modules/gcp_compute_instance_template.py @@ -486,6 +486,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -499,6 +500,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_instance_template_info.py b/plugins/modules/gcp_compute_instance_template_info.py index 943cf02..e209396 100644 --- a/plugins/modules/gcp_compute_instance_template_info.py +++ b/plugins/modules/gcp_compute_instance_template_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_interconnect_attachment.py b/plugins/modules/gcp_compute_interconnect_attachment.py index 5deac09..b28fc9c 100644 --- a/plugins/modules/gcp_compute_interconnect_attachment.py +++ b/plugins/modules/gcp_compute_interconnect_attachment.py @@ -195,6 +195,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -208,6 +209,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_interconnect_attachment_info.py b/plugins/modules/gcp_compute_interconnect_attachment_info.py index 0d30dba..51e5963 100644 --- a/plugins/modules/gcp_compute_interconnect_attachment_info.py +++ b/plugins/modules/gcp_compute_interconnect_attachment_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_network.py b/plugins/modules/gcp_compute_network.py index e093195..ec58356 100644 --- a/plugins/modules/gcp_compute_network.py +++ b/plugins/modules/gcp_compute_network.py @@ -109,6 +109,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -122,6 +123,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_network_endpoint_group.py b/plugins/modules/gcp_compute_network_endpoint_group.py index d6350de..b28d1c0 100644 --- a/plugins/modules/gcp_compute_network_endpoint_group.py +++ b/plugins/modules/gcp_compute_network_endpoint_group.py @@ -125,6 +125,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -138,6 +139,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_network_endpoint_group_info.py b/plugins/modules/gcp_compute_network_endpoint_group_info.py index e34941a..c40bd5b 100644 --- a/plugins/modules/gcp_compute_network_endpoint_group_info.py +++ b/plugins/modules/gcp_compute_network_endpoint_group_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_network_info.py b/plugins/modules/gcp_compute_network_info.py index 854687e..6b620a7 100644 --- a/plugins/modules/gcp_compute_network_info.py +++ b/plugins/modules/gcp_compute_network_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_node_group.py b/plugins/modules/gcp_compute_node_group.py index c423110..b558455 100644 --- a/plugins/modules/gcp_compute_node_group.py +++ b/plugins/modules/gcp_compute_node_group.py @@ -142,6 +142,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -155,6 +156,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_node_group_info.py b/plugins/modules/gcp_compute_node_group_info.py index a09934e..d546d68 100644 --- a/plugins/modules/gcp_compute_node_group_info.py +++ b/plugins/modules/gcp_compute_node_group_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_node_template.py b/plugins/modules/gcp_compute_node_template.py index 5de307c..0c4edee 100644 --- a/plugins/modules/gcp_compute_node_template.py +++ b/plugins/modules/gcp_compute_node_template.py @@ -136,6 +136,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -149,6 +150,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_node_template_info.py b/plugins/modules/gcp_compute_node_template_info.py index 0a5a53e..ca3930e 100644 --- a/plugins/modules/gcp_compute_node_template_info.py +++ b/plugins/modules/gcp_compute_node_template_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_autoscaler.py b/plugins/modules/gcp_compute_region_autoscaler.py index 6d4cca9..02016ce 100644 --- a/plugins/modules/gcp_compute_region_autoscaler.py +++ b/plugins/modules/gcp_compute_region_autoscaler.py @@ -238,6 +238,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -251,6 +252,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_autoscaler_info.py b/plugins/modules/gcp_compute_region_autoscaler_info.py index 6775944..553a709 100644 --- a/plugins/modules/gcp_compute_region_autoscaler_info.py +++ b/plugins/modules/gcp_compute_region_autoscaler_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_backend_service.py b/plugins/modules/gcp_compute_region_backend_service.py index 832cfe5..08a569b 100644 --- a/plugins/modules/gcp_compute_region_backend_service.py +++ b/plugins/modules/gcp_compute_region_backend_service.py @@ -720,6 +720,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -733,6 +734,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_backend_service_info.py b/plugins/modules/gcp_compute_region_backend_service_info.py index 99c2b75..6794b0f 100644 --- a/plugins/modules/gcp_compute_region_backend_service_info.py +++ b/plugins/modules/gcp_compute_region_backend_service_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_disk.py b/plugins/modules/gcp_compute_region_disk.py index 705f7aa..e8fbecc 100644 --- a/plugins/modules/gcp_compute_region_disk.py +++ b/plugins/modules/gcp_compute_region_disk.py @@ -177,6 +177,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -190,6 +191,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_disk_info.py b/plugins/modules/gcp_compute_region_disk_info.py index 76d4a70..da7e724 100644 --- a/plugins/modules/gcp_compute_region_disk_info.py +++ b/plugins/modules/gcp_compute_region_disk_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_health_check.py b/plugins/modules/gcp_compute_region_health_check.py index 2e489c1..ffb737f 100644 --- a/plugins/modules/gcp_compute_region_health_check.py +++ b/plugins/modules/gcp_compute_region_health_check.py @@ -472,6 +472,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -485,6 +486,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_health_check_info.py b/plugins/modules/gcp_compute_region_health_check_info.py index 8367f32..2f0a8c1 100644 --- a/plugins/modules/gcp_compute_region_health_check_info.py +++ b/plugins/modules/gcp_compute_region_health_check_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_instance_group_manager.py b/plugins/modules/gcp_compute_region_instance_group_manager.py index 267e7f1..aa31419 100644 --- a/plugins/modules/gcp_compute_region_instance_group_manager.py +++ b/plugins/modules/gcp_compute_region_instance_group_manager.py @@ -155,6 +155,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -168,6 +169,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_instance_group_manager_info.py b/plugins/modules/gcp_compute_region_instance_group_manager_info.py index fa5be22..9c17aae 100644 --- a/plugins/modules/gcp_compute_region_instance_group_manager_info.py +++ b/plugins/modules/gcp_compute_region_instance_group_manager_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_target_http_proxy.py b/plugins/modules/gcp_compute_region_target_http_proxy.py index c409f58..0497e05 100644 --- a/plugins/modules/gcp_compute_region_target_http_proxy.py +++ b/plugins/modules/gcp_compute_region_target_http_proxy.py @@ -93,6 +93,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -106,6 +107,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_target_http_proxy_info.py b/plugins/modules/gcp_compute_region_target_http_proxy_info.py index 6537b31..0ee62ca 100644 --- a/plugins/modules/gcp_compute_region_target_http_proxy_info.py +++ b/plugins/modules/gcp_compute_region_target_http_proxy_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_target_https_proxy.py b/plugins/modules/gcp_compute_region_target_https_proxy.py index 91dfd3c..630adc9 100644 --- a/plugins/modules/gcp_compute_region_target_https_proxy.py +++ b/plugins/modules/gcp_compute_region_target_https_proxy.py @@ -101,6 +101,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -114,6 +115,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_target_https_proxy_info.py b/plugins/modules/gcp_compute_region_target_https_proxy_info.py index f28c382..fff1ff0 100644 --- a/plugins/modules/gcp_compute_region_target_https_proxy_info.py +++ b/plugins/modules/gcp_compute_region_target_https_proxy_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_url_map.py b/plugins/modules/gcp_compute_region_url_map.py index 9428488..9e4dc73 100644 --- a/plugins/modules/gcp_compute_region_url_map.py +++ b/plugins/modules/gcp_compute_region_url_map.py @@ -1590,6 +1590,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -1603,6 +1604,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_region_url_map_info.py b/plugins/modules/gcp_compute_region_url_map_info.py index 8bcb520..946744d 100644 --- a/plugins/modules/gcp_compute_region_url_map_info.py +++ b/plugins/modules/gcp_compute_region_url_map_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_reservation.py b/plugins/modules/gcp_compute_reservation.py index b8cc710..2a6fbde 100644 --- a/plugins/modules/gcp_compute_reservation.py +++ b/plugins/modules/gcp_compute_reservation.py @@ -162,6 +162,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -175,6 +176,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_reservation_info.py b/plugins/modules/gcp_compute_reservation_info.py index e6c2197..d31cb13 100644 --- a/plugins/modules/gcp_compute_reservation_info.py +++ b/plugins/modules/gcp_compute_reservation_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_resource_policy.py b/plugins/modules/gcp_compute_resource_policy.py index 756685f..53a7df2 100644 --- a/plugins/modules/gcp_compute_resource_policy.py +++ b/plugins/modules/gcp_compute_resource_policy.py @@ -275,6 +275,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -288,6 +289,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_resource_policy_info.py b/plugins/modules/gcp_compute_resource_policy_info.py index 2cec554..a112342 100644 --- a/plugins/modules/gcp_compute_resource_policy_info.py +++ b/plugins/modules/gcp_compute_resource_policy_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_route.py b/plugins/modules/gcp_compute_route.py index 12b8bec..8f13778 100644 --- a/plugins/modules/gcp_compute_route.py +++ b/plugins/modules/gcp_compute_route.py @@ -175,6 +175,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -188,6 +189,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_route_info.py b/plugins/modules/gcp_compute_route_info.py index e0a5c4d..8b315e7 100644 --- a/plugins/modules/gcp_compute_route_info.py +++ b/plugins/modules/gcp_compute_route_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_router.py b/plugins/modules/gcp_compute_router.py index d64d212..d03ccd6 100644 --- a/plugins/modules/gcp_compute_router.py +++ b/plugins/modules/gcp_compute_router.py @@ -142,6 +142,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -155,6 +156,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_router_info.py b/plugins/modules/gcp_compute_router_info.py index 057a0b6..470594d 100644 --- a/plugins/modules/gcp_compute_router_info.py +++ b/plugins/modules/gcp_compute_router_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_snapshot.py b/plugins/modules/gcp_compute_snapshot.py index 494b2ac..4700c8b 100644 --- a/plugins/modules/gcp_compute_snapshot.py +++ b/plugins/modules/gcp_compute_snapshot.py @@ -158,6 +158,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -171,6 +172,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_snapshot_info.py b/plugins/modules/gcp_compute_snapshot_info.py index d885e89..24547c8 100644 --- a/plugins/modules/gcp_compute_snapshot_info.py +++ b/plugins/modules/gcp_compute_snapshot_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_ssl_certificate.py b/plugins/modules/gcp_compute_ssl_certificate.py index d2f4680..571ec58 100644 --- a/plugins/modules/gcp_compute_ssl_certificate.py +++ b/plugins/modules/gcp_compute_ssl_certificate.py @@ -90,6 +90,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -103,6 +104,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_ssl_certificate_info.py b/plugins/modules/gcp_compute_ssl_certificate_info.py index 87b80fa..be8418b 100644 --- a/plugins/modules/gcp_compute_ssl_certificate_info.py +++ b/plugins/modules/gcp_compute_ssl_certificate_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_ssl_policy.py b/plugins/modules/gcp_compute_ssl_policy.py index 64a62fd..dabfd39 100644 --- a/plugins/modules/gcp_compute_ssl_policy.py +++ b/plugins/modules/gcp_compute_ssl_policy.py @@ -100,6 +100,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -113,6 +114,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_ssl_policy_info.py b/plugins/modules/gcp_compute_ssl_policy_info.py index 0fd69eb..03cbb43 100644 --- a/plugins/modules/gcp_compute_ssl_policy_info.py +++ b/plugins/modules/gcp_compute_ssl_policy_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_subnetwork.py b/plugins/modules/gcp_compute_subnetwork.py index 7642dc2..4075005 100644 --- a/plugins/modules/gcp_compute_subnetwork.py +++ b/plugins/modules/gcp_compute_subnetwork.py @@ -152,6 +152,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -165,6 +166,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_subnetwork_info.py b/plugins/modules/gcp_compute_subnetwork_info.py index d8ae2c2..de08554 100644 --- a/plugins/modules/gcp_compute_subnetwork_info.py +++ b/plugins/modules/gcp_compute_subnetwork_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_http_proxy.py b/plugins/modules/gcp_compute_target_http_proxy.py index 5e92ee6..026cd30 100644 --- a/plugins/modules/gcp_compute_target_http_proxy.py +++ b/plugins/modules/gcp_compute_target_http_proxy.py @@ -94,6 +94,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -107,6 +108,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_http_proxy_info.py b/plugins/modules/gcp_compute_target_http_proxy_info.py index 21f3090..ab4d315 100644 --- a/plugins/modules/gcp_compute_target_http_proxy_info.py +++ b/plugins/modules/gcp_compute_target_http_proxy_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_https_proxy.py b/plugins/modules/gcp_compute_target_https_proxy.py index c692730..1d7798d 100644 --- a/plugins/modules/gcp_compute_target_https_proxy.py +++ b/plugins/modules/gcp_compute_target_https_proxy.py @@ -122,6 +122,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -135,6 +136,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_https_proxy_info.py b/plugins/modules/gcp_compute_target_https_proxy_info.py index 36fab9e..c0ef590 100644 --- a/plugins/modules/gcp_compute_target_https_proxy_info.py +++ b/plugins/modules/gcp_compute_target_https_proxy_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_instance.py b/plugins/modules/gcp_compute_target_instance.py index 686886d..a6f1ecf 100644 --- a/plugins/modules/gcp_compute_target_instance.py +++ b/plugins/modules/gcp_compute_target_instance.py @@ -105,6 +105,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -118,6 +119,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_instance_info.py b/plugins/modules/gcp_compute_target_instance_info.py index 5fe4415..be54314 100644 --- a/plugins/modules/gcp_compute_target_instance_info.py +++ b/plugins/modules/gcp_compute_target_instance_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_pool.py b/plugins/modules/gcp_compute_target_pool.py index 48118c1..1c42619 100644 --- a/plugins/modules/gcp_compute_target_pool.py +++ b/plugins/modules/gcp_compute_target_pool.py @@ -147,6 +147,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -160,6 +161,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_pool_info.py b/plugins/modules/gcp_compute_target_pool_info.py index 58c2db5..4755f4b 100644 --- a/plugins/modules/gcp_compute_target_pool_info.py +++ b/plugins/modules/gcp_compute_target_pool_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_ssl_proxy.py b/plugins/modules/gcp_compute_target_ssl_proxy.py index cd95c17..bbf8c0d 100644 --- a/plugins/modules/gcp_compute_target_ssl_proxy.py +++ b/plugins/modules/gcp_compute_target_ssl_proxy.py @@ -112,6 +112,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -125,6 +126,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_ssl_proxy_info.py b/plugins/modules/gcp_compute_target_ssl_proxy_info.py index ff6b11d..5f82a8f 100644 --- a/plugins/modules/gcp_compute_target_ssl_proxy_info.py +++ b/plugins/modules/gcp_compute_target_ssl_proxy_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_tcp_proxy.py b/plugins/modules/gcp_compute_target_tcp_proxy.py index 945cb9c..4e1e587 100644 --- a/plugins/modules/gcp_compute_target_tcp_proxy.py +++ b/plugins/modules/gcp_compute_target_tcp_proxy.py @@ -99,6 +99,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -112,6 +113,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_tcp_proxy_info.py b/plugins/modules/gcp_compute_target_tcp_proxy_info.py index c4e0619..4e324507 100644 --- a/plugins/modules/gcp_compute_target_tcp_proxy_info.py +++ b/plugins/modules/gcp_compute_target_tcp_proxy_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_vpn_gateway.py b/plugins/modules/gcp_compute_target_vpn_gateway.py index e76bd40..d967fbe 100644 --- a/plugins/modules/gcp_compute_target_vpn_gateway.py +++ b/plugins/modules/gcp_compute_target_vpn_gateway.py @@ -92,6 +92,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -105,6 +106,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_target_vpn_gateway_info.py b/plugins/modules/gcp_compute_target_vpn_gateway_info.py index 67f71be..e5aa5a5 100644 --- a/plugins/modules/gcp_compute_target_vpn_gateway_info.py +++ b/plugins/modules/gcp_compute_target_vpn_gateway_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_url_map.py b/plugins/modules/gcp_compute_url_map.py index f71ea3e..f041802 100644 --- a/plugins/modules/gcp_compute_url_map.py +++ b/plugins/modules/gcp_compute_url_map.py @@ -2531,6 +2531,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -2544,6 +2545,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_url_map_info.py b/plugins/modules/gcp_compute_url_map_info.py index 8ee58d7..2e809da 100644 --- a/plugins/modules/gcp_compute_url_map_info.py +++ b/plugins/modules/gcp_compute_url_map_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_vpn_tunnel.py b/plugins/modules/gcp_compute_vpn_tunnel.py index a59e469..2b1ec43 100644 --- a/plugins/modules/gcp_compute_vpn_tunnel.py +++ b/plugins/modules/gcp_compute_vpn_tunnel.py @@ -179,6 +179,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -192,6 +193,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_compute_vpn_tunnel_info.py b/plugins/modules/gcp_compute_vpn_tunnel_info.py index 9cf5e16..cf8a187 100644 --- a/plugins/modules/gcp_compute_vpn_tunnel_info.py +++ b/plugins/modules/gcp_compute_vpn_tunnel_info.py @@ -65,6 +65,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -78,6 +79,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_container_cluster.py b/plugins/modules/gcp_container_cluster.py index 34596a5..cd3f75f 100644 --- a/plugins/modules/gcp_container_cluster.py +++ b/plugins/modules/gcp_container_cluster.py @@ -692,6 +692,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -705,6 +706,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_container_cluster_info.py b/plugins/modules/gcp_container_cluster_info.py index d94e564..9711b6d 100644 --- a/plugins/modules/gcp_container_cluster_info.py +++ b/plugins/modules/gcp_container_cluster_info.py @@ -61,6 +61,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -74,6 +75,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_container_node_pool.py b/plugins/modules/gcp_container_node_pool.py index a0b9c71..c9e2033 100644 --- a/plugins/modules/gcp_container_node_pool.py +++ b/plugins/modules/gcp_container_node_pool.py @@ -359,6 +359,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -372,6 +373,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_container_node_pool_info.py b/plugins/modules/gcp_container_node_pool_info.py index a3de8ac..bed1a0d 100644 --- a/plugins/modules/gcp_container_node_pool_info.py +++ b/plugins/modules/gcp_container_node_pool_info.py @@ -71,6 +71,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -84,6 +85,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_dns_managed_zone.py b/plugins/modules/gcp_dns_managed_zone.py index 8aec272..05a20d9 100644 --- a/plugins/modules/gcp_dns_managed_zone.py +++ b/plugins/modules/gcp_dns_managed_zone.py @@ -235,6 +235,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -248,6 +249,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_dns_managed_zone_info.py b/plugins/modules/gcp_dns_managed_zone_info.py index d39aef2..0163424 100644 --- a/plugins/modules/gcp_dns_managed_zone_info.py +++ b/plugins/modules/gcp_dns_managed_zone_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_dns_resource_record_set.py b/plugins/modules/gcp_dns_resource_record_set.py index c982205..b27d366 100644 --- a/plugins/modules/gcp_dns_resource_record_set.py +++ b/plugins/modules/gcp_dns_resource_record_set.py @@ -95,6 +95,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -108,6 +109,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_dns_resource_record_set_info.py b/plugins/modules/gcp_dns_resource_record_set_info.py index 1dba0a7..bc9f59c 100644 --- a/plugins/modules/gcp_dns_resource_record_set_info.py +++ b/plugins/modules/gcp_dns_resource_record_set_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_filestore_instance.py b/plugins/modules/gcp_filestore_instance.py index 7895f9c..6b91650 100644 --- a/plugins/modules/gcp_filestore_instance.py +++ b/plugins/modules/gcp_filestore_instance.py @@ -132,6 +132,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -145,6 +146,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_filestore_instance_info.py b/plugins/modules/gcp_filestore_instance_info.py index af81ccd..827a16f 100644 --- a/plugins/modules/gcp_filestore_instance_info.py +++ b/plugins/modules/gcp_filestore_instance_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_iam_role.py b/plugins/modules/gcp_iam_role.py index 8af62c8..1e9a83e 100644 --- a/plugins/modules/gcp_iam_role.py +++ b/plugins/modules/gcp_iam_role.py @@ -94,6 +94,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -107,6 +108,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_iam_role_info.py b/plugins/modules/gcp_iam_role_info.py index 879bd08..8d71776 100644 --- a/plugins/modules/gcp_iam_role_info.py +++ b/plugins/modules/gcp_iam_role_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_iam_service_account.py b/plugins/modules/gcp_iam_service_account.py index d93db04..85efa6c 100644 --- a/plugins/modules/gcp_iam_service_account.py +++ b/plugins/modules/gcp_iam_service_account.py @@ -71,6 +71,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -84,6 +85,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_iam_service_account_info.py b/plugins/modules/gcp_iam_service_account_info.py index 6e33023..1ef9673 100644 --- a/plugins/modules/gcp_iam_service_account_info.py +++ b/plugins/modules/gcp_iam_service_account_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_iam_service_account_key.py b/plugins/modules/gcp_iam_service_account_key.py index a34718d..51f780c 100644 --- a/plugins/modules/gcp_iam_service_account_key.py +++ b/plugins/modules/gcp_iam_service_account_key.py @@ -91,6 +91,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -104,6 +105,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_kms_crypto_key.py b/plugins/modules/gcp_kms_crypto_key.py index 4829081..512dd47 100644 --- a/plugins/modules/gcp_kms_crypto_key.py +++ b/plugins/modules/gcp_kms_crypto_key.py @@ -120,6 +120,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -133,6 +134,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_kms_crypto_key_info.py b/plugins/modules/gcp_kms_crypto_key_info.py index 621b84a..2a342e0 100644 --- a/plugins/modules/gcp_kms_crypto_key_info.py +++ b/plugins/modules/gcp_kms_crypto_key_info.py @@ -59,6 +59,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -72,6 +73,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_kms_key_ring.py b/plugins/modules/gcp_kms_key_ring.py index 7f70faa..98d15ce 100644 --- a/plugins/modules/gcp_kms_key_ring.py +++ b/plugins/modules/gcp_kms_key_ring.py @@ -73,6 +73,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -86,6 +87,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_kms_key_ring_info.py b/plugins/modules/gcp_kms_key_ring_info.py index d0b1fc7..97afe03 100644 --- a/plugins/modules/gcp_kms_key_ring_info.py +++ b/plugins/modules/gcp_kms_key_ring_info.py @@ -60,6 +60,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -73,6 +74,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_logging_metric.py b/plugins/modules/gcp_logging_metric.py index 262895d..7cc6d7a 100644 --- a/plugins/modules/gcp_logging_metric.py +++ b/plugins/modules/gcp_logging_metric.py @@ -240,6 +240,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -253,6 +254,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_logging_metric_info.py b/plugins/modules/gcp_logging_metric_info.py index c1a3cde..92ac893 100644 --- a/plugins/modules/gcp_logging_metric_info.py +++ b/plugins/modules/gcp_logging_metric_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_mlengine_model.py b/plugins/modules/gcp_mlengine_model.py index e3edaac..b361dab 100644 --- a/plugins/modules/gcp_mlengine_model.py +++ b/plugins/modules/gcp_mlengine_model.py @@ -108,6 +108,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -121,6 +122,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_mlengine_model_info.py b/plugins/modules/gcp_mlengine_model_info.py index 3328927..525e1ed 100644 --- a/plugins/modules/gcp_mlengine_model_info.py +++ b/plugins/modules/gcp_mlengine_model_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_mlengine_version.py b/plugins/modules/gcp_mlengine_version.py index e19fbe7..d5e2853 100644 --- a/plugins/modules/gcp_mlengine_version.py +++ b/plugins/modules/gcp_mlengine_version.py @@ -171,6 +171,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -184,6 +185,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_mlengine_version_info.py b/plugins/modules/gcp_mlengine_version_info.py index 04523a7..fed182f 100644 --- a/plugins/modules/gcp_mlengine_version_info.py +++ b/plugins/modules/gcp_mlengine_version_info.py @@ -63,6 +63,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -76,6 +77,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_pubsub_subscription.py b/plugins/modules/gcp_pubsub_subscription.py index af101c8..7836861 100644 --- a/plugins/modules/gcp_pubsub_subscription.py +++ b/plugins/modules/gcp_pubsub_subscription.py @@ -333,6 +333,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -346,6 +347,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_pubsub_subscription_info.py b/plugins/modules/gcp_pubsub_subscription_info.py index dd20c93..cc25706 100644 --- a/plugins/modules/gcp_pubsub_subscription_info.py +++ b/plugins/modules/gcp_pubsub_subscription_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_pubsub_topic.py b/plugins/modules/gcp_pubsub_topic.py index 28fdb08..89d8062 100644 --- a/plugins/modules/gcp_pubsub_topic.py +++ b/plugins/modules/gcp_pubsub_topic.py @@ -118,6 +118,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -131,6 +132,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_pubsub_topic_info.py b/plugins/modules/gcp_pubsub_topic_info.py index 7b8627d..a8fae1d 100644 --- a/plugins/modules/gcp_pubsub_topic_info.py +++ b/plugins/modules/gcp_pubsub_topic_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_redis_instance.py b/plugins/modules/gcp_redis_instance.py index cef6eca..7aa1fc2 100644 --- a/plugins/modules/gcp_redis_instance.py +++ b/plugins/modules/gcp_redis_instance.py @@ -162,6 +162,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -175,6 +176,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_redis_instance_info.py b/plugins/modules/gcp_redis_instance_info.py index 593b063..42f2225 100644 --- a/plugins/modules/gcp_redis_instance_info.py +++ b/plugins/modules/gcp_redis_instance_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_resourcemanager_project.py b/plugins/modules/gcp_resourcemanager_project.py index cd2d099..6a73f00 100644 --- a/plugins/modules/gcp_resourcemanager_project.py +++ b/plugins/modules/gcp_resourcemanager_project.py @@ -104,6 +104,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -117,6 +118,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_resourcemanager_project_info.py b/plugins/modules/gcp_resourcemanager_project_info.py index 1e747b7..52e52ee 100644 --- a/plugins/modules/gcp_resourcemanager_project_info.py +++ b/plugins/modules/gcp_resourcemanager_project_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_runtimeconfig_config.py b/plugins/modules/gcp_runtimeconfig_config.py index 6fe439e..ca73cce 100644 --- a/plugins/modules/gcp_runtimeconfig_config.py +++ b/plugins/modules/gcp_runtimeconfig_config.py @@ -72,6 +72,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -85,6 +86,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_runtimeconfig_config_info.py b/plugins/modules/gcp_runtimeconfig_config_info.py index c082140..812533b 100644 --- a/plugins/modules/gcp_runtimeconfig_config_info.py +++ b/plugins/modules/gcp_runtimeconfig_config_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_runtimeconfig_variable.py b/plugins/modules/gcp_runtimeconfig_variable.py index 8da8732..5af44df 100644 --- a/plugins/modules/gcp_runtimeconfig_variable.py +++ b/plugins/modules/gcp_runtimeconfig_variable.py @@ -81,6 +81,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -94,6 +95,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_runtimeconfig_variable_info.py b/plugins/modules/gcp_runtimeconfig_variable_info.py index 0e619dc..b387fc9 100644 --- a/plugins/modules/gcp_runtimeconfig_variable_info.py +++ b/plugins/modules/gcp_runtimeconfig_variable_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_serviceusage_service.py b/plugins/modules/gcp_serviceusage_service.py index 221f7b6..ebafc25 100644 --- a/plugins/modules/gcp_serviceusage_service.py +++ b/plugins/modules/gcp_serviceusage_service.py @@ -72,6 +72,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -85,6 +86,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_serviceusage_service_info.py b/plugins/modules/gcp_serviceusage_service_info.py index b5c88d3..2ca122b 100644 --- a/plugins/modules/gcp_serviceusage_service_info.py +++ b/plugins/modules/gcp_serviceusage_service_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sourcerepo_repository.py b/plugins/modules/gcp_sourcerepo_repository.py index 178cee8..457b52d 100644 --- a/plugins/modules/gcp_sourcerepo_repository.py +++ b/plugins/modules/gcp_sourcerepo_repository.py @@ -68,6 +68,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -81,6 +82,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sourcerepo_repository_info.py b/plugins/modules/gcp_sourcerepo_repository_info.py index 607e624..9809df4 100644 --- a/plugins/modules/gcp_sourcerepo_repository_info.py +++ b/plugins/modules/gcp_sourcerepo_repository_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_spanner_database.py b/plugins/modules/gcp_spanner_database.py index 6c6bce9..6ce7882 100644 --- a/plugins/modules/gcp_spanner_database.py +++ b/plugins/modules/gcp_spanner_database.py @@ -98,6 +98,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -111,6 +112,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_spanner_database_info.py b/plugins/modules/gcp_spanner_database_info.py index 84a7b47..a3d74d4 100644 --- a/plugins/modules/gcp_spanner_database_info.py +++ b/plugins/modules/gcp_spanner_database_info.py @@ -63,6 +63,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -76,6 +77,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_spanner_instance.py b/plugins/modules/gcp_spanner_instance.py index deb212f..af0bb8a 100644 --- a/plugins/modules/gcp_spanner_instance.py +++ b/plugins/modules/gcp_spanner_instance.py @@ -101,6 +101,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -114,6 +115,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_spanner_instance_info.py b/plugins/modules/gcp_spanner_instance_info.py index 64bc7a0..6b6daee 100644 --- a/plugins/modules/gcp_spanner_instance_info.py +++ b/plugins/modules/gcp_spanner_instance_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sql_database.py b/plugins/modules/gcp_sql_database.py index 685ffee..c3473bb 100644 --- a/plugins/modules/gcp_sql_database.py +++ b/plugins/modules/gcp_sql_database.py @@ -88,6 +88,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -101,6 +102,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sql_database_info.py b/plugins/modules/gcp_sql_database_info.py index adb9046..f249493 100644 --- a/plugins/modules/gcp_sql_database_info.py +++ b/plugins/modules/gcp_sql_database_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sql_instance.py b/plugins/modules/gcp_sql_instance.py index 9999dd1..77b9662 100644 --- a/plugins/modules/gcp_sql_instance.py +++ b/plugins/modules/gcp_sql_instance.py @@ -371,6 +371,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -384,6 +385,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sql_instance_info.py b/plugins/modules/gcp_sql_instance_info.py index 8f734c3..f688ec6 100644 --- a/plugins/modules/gcp_sql_instance_info.py +++ b/plugins/modules/gcp_sql_instance_info.py @@ -53,6 +53,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -66,6 +67,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sql_ssl_cert.py b/plugins/modules/gcp_sql_ssl_cert.py index 4d06ce2..b6b0348 100644 --- a/plugins/modules/gcp_sql_ssl_cert.py +++ b/plugins/modules/gcp_sql_ssl_cert.py @@ -107,6 +107,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -120,6 +121,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sql_user.py b/plugins/modules/gcp_sql_user.py index b049410..8797088 100644 --- a/plugins/modules/gcp_sql_user.py +++ b/plugins/modules/gcp_sql_user.py @@ -88,6 +88,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -101,6 +102,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_sql_user_info.py b/plugins/modules/gcp_sql_user_info.py index b03048d..f686cdc 100644 --- a/plugins/modules/gcp_sql_user_info.py +++ b/plugins/modules/gcp_sql_user_info.py @@ -63,6 +63,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -76,6 +77,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_storage_bucket.py b/plugins/modules/gcp_storage_bucket.py index 18645d9..d492d4a 100644 --- a/plugins/modules/gcp_storage_bucket.py +++ b/plugins/modules/gcp_storage_bucket.py @@ -415,6 +415,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -428,6 +429,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_storage_bucket_access_control.py b/plugins/modules/gcp_storage_bucket_access_control.py index b2b1ea7..65f47f7 100644 --- a/plugins/modules/gcp_storage_bucket_access_control.py +++ b/plugins/modules/gcp_storage_bucket_access_control.py @@ -96,6 +96,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -109,6 +110,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_storage_default_object_acl.py b/plugins/modules/gcp_storage_default_object_acl.py index 45c615f..4c32491 100644 --- a/plugins/modules/gcp_storage_default_object_acl.py +++ b/plugins/modules/gcp_storage_default_object_acl.py @@ -94,6 +94,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -107,6 +108,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_storage_object.py b/plugins/modules/gcp_storage_object.py index aef0829..4fc3412 100644 --- a/plugins/modules/gcp_storage_object.py +++ b/plugins/modules/gcp_storage_object.py @@ -69,6 +69,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -82,6 +83,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_tpu_node.py b/plugins/modules/gcp_tpu_node.py index 87bcc47..c580857 100644 --- a/plugins/modules/gcp_tpu_node.py +++ b/plugins/modules/gcp_tpu_node.py @@ -130,6 +130,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -143,6 +144,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: diff --git a/plugins/modules/gcp_tpu_node_info.py b/plugins/modules/gcp_tpu_node_info.py index 5c8007e..f4fc6b7 100644 --- a/plugins/modules/gcp_tpu_node_info.py +++ b/plugins/modules/gcp_tpu_node_info.py @@ -58,6 +58,7 @@ options: - machineaccount - serviceaccount - accesstoken + - impersonation service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -71,6 +72,7 @@ options: description: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. + - Required service account to impersonate if impersonation is selected. type: str access_token: description: