Hello folks,
Where should I store json credentials file generated for my service account as it is suggested in https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/getting_started ?
Locally it is quite easy:
terraform {
required_providers {
google = {
source = “hashicorp/google”
}
}
}provider “google” {
version = “3.5.0”
credentials = file(“gcp-credentials.json”)
project = “my project”
zone = “us-central1-a”
}
But where can I put gcp-credentials.json on Circle CI service? I have only found ssh keys section, but no storage…
For obvious reasons I don’t want to store service account json in git.
Please advise