5

我的 terraform gcp 提供程序配置看起来像

provider "google" {
  project     = var.project
  region      = var.region
  credentials = file("account.json")
}

我想在 terraform cloud 上运行我的 terraform 文件,我不想将 account.json 文件放在源代码管理中。如何将 json GCP 服务帐户文件存储在 terraform 云中,然后从 terraform 脚本访问它?

4

2 回答 2

6

您可以在 Terraform Cloud UI 中将凭据作为名为google_credentials的多行值提供,并将其标记为敏感值,然后使用您的帐户的正确值输入类似这样的内容(可能只是您的 account.json 文件的复制粘贴)已经有):

{
  "type": "service_account",
  "project_id": "project-id",
  "private_key_id": "key-id",
  "private_key": "-----BEGIN PRIVATE KEY-----\nprivate-key\n-----END PRIVATE KEY-----\n",
  "client_email": "service-account-email",
  "client_id": "client-id",
  "auth_uri": "https://accounts.google.com/o/oauth2/auth",
  "token_uri": "https://accounts.google.com/o/oauth2/token",
  "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
  "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/service-account-email"
}

然后,您可以将工作空间变量中的凭据提供给 Terraform 模块中的google提供程序,如下所示作为将被解释为 JSON 的单个变量:

provider "google" {
  project     = var.project
  region      = var.region
  credentials = var.google_credentials
}

variable "google_credentials" {
  description = "the contents of a service account key file in JSON format."
  type = string
}

凭据 -(可选)JSON 格式的服务帐户密钥文件的路径或内容。您可以使用 Cloud Console 管理密钥文件。

来自Google Provider Configuration Reference

于 2020-06-21T12:30:26.583 回答
1

更好的答案是通过运行删除服务帐户密钥文件中的换行符

tr -d '\n' < current_service_key.json > no_new_line_key.json

将“no_new_line_key.json”的内容粘贴到 Terraform Cloud 的变量部分,并使用此处记录的任何变量名称,例如 GOOGLE_CREDENTIALS 或 GOOGLE_CLOUD_KEYFILE_JSON:( https://registry.terraform.io/providers/hashicorp/google/latest/ docs/guides/provider_reference)。我使用了 GOOGLE_CREDENTIALS

配置截图

于 2020-12-11T09:23:11.133 回答