From ea77a3fe0433b72877f3d418d0ad0acaf006f38a Mon Sep 17 00:00:00 2001 From: Ross Vandegrift Date: Thu, 7 Mar 2019 09:02:20 -0800 Subject: [PATCH] Clarify account_id param (#2590) Service accounts do not have a field named `id`, but they have a few fields with `Id` in the name. This clarifies what terraform actually needs. --- website/docs/d/datasource_google_service_account.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/d/datasource_google_service_account.html.markdown b/website/docs/d/datasource_google_service_account.html.markdown index 0a150b60..ad5b445c 100644 --- a/website/docs/d/datasource_google_service_account.html.markdown +++ b/website/docs/d/datasource_google_service_account.html.markdown @@ -42,7 +42,7 @@ resource "kubernetes_secret" "google-application-credentials" { The following arguments are supported: -* `account_id` - (Required) The Service account id. +* `account_id` - (Required) The Service account id. (This is the part of the service account's email field that comes before the @ symbol.) * `project` - (Optional) The ID of the project that the service account will be created in. Defaults to the provider project configuration.