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.
This commit is contained in:
Ross Vandegrift 2019-03-07 09:02:20 -08:00 committed by Riley Karson
parent d3d73d4850
commit ea77a3fe04

View File

@ -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.