gpt4 book ai didi

terraform - "that name is not available"用于所有 gcs 桶

转载 作者:行者123 更新时间:2023-12-02 19:53:58 25 4
gpt4 key购买 nike

真的很难在 gcp 上使用 Terraform 部署我的应用程序。我遇到的问题是我经常收到错误消息:

googleapi:错误 409:抱歉,该名称不可用。请尝试不同的。,冲突

my_test_upload_bucket_udybmn_anitoy

resource "google_storage_bucket" "test_upload_bucket" {
name = var.upload_bucket
location = "northamerica-northeast1"
lifecycle_rule {
action {
type = "SetStorageClass"
storage_class = "COLDLINE"
}
condition {
age = 14
}
}
}

真的很感谢这里的帮助,因为这让我发疯

想知道有人可以指出我的方向,因为我也尝试过在末尾添加随机字符串但无济于事

我希望创建存储桶,因为名称是唯一的但无济于事

最佳答案

GCS 存储桶名称是全局唯一的,这意味着任何两个存储桶都不能拥有相同的名称。尝试在名称前加上 GUID 或其他一些随机字符串(请参阅有关存储桶命名实践的文档 here)。

另请注意,如果您之前创建并删除了同名存储桶,您可能需要等待一段时间才能再次使用该名称。

关于terraform - "that name is not available"用于所有 gcs 桶,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57519116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com