Skip to content

Commit

Permalink
Add missing quotes to example for saving GCP SA key as k8s secr… (#5983)
Browse files Browse the repository at this point in the history
  • Loading branch information
muru authored Mar 27, 2020
1 parent 44999c4 commit 071b7df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/r/google_service_account_key.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "kubernetes_secret" "google-application-credentials" {
name = "google-application-credentials"
}
data = {
credentials.json = base64decode(google_service_account_key.mykey.private_key)
"credentials.json" = base64decode(google_service_account_key.mykey.private_key)
}
}
```
Expand Down

0 comments on commit 071b7df

Please sign in to comment.