1

我正在尝试通过 Terraform .tf 脚本从谷歌存储桶中获取一个对象(例如 abc.png)签名的 URL。但我没有在控制台上得到任何输出。

我已经在我的本地 Linux 机器上安装了 terraform,我提供了服务帐户 JSON 密钥作为凭据,但没有获得签名 URL,请检查下面的脚本:

provider "google" {
  credentials = "account.json"
}

data "google_storage_object_signed_url" "get_url" {
  bucket       = "my bucket"
  path         = "new.json"
  content_md5  = "pRviqwS4c4OTJRTe03FD1w=="
  content_type = "text/plain"
  duration     = "2h"
  credentials  = "account.json"

  extension_headers = {
    x-goog-if-generation-match = 1
  }
}

请让我知道我做错了什么。

4

1 回答 1

1

如果您需要查看输出值,请添加如下Outputs代码

output "signed_url" {
  value = "${data.google_storage_object_signed_url.get_url.signed_url}"
}
于 2019-03-16T02:11:17.903 回答