部署 gcp 云功能部署时出现问题

时间:2021-07-13 11:12:17

标签: google-cloud-platform terraform terraform-provider-gcp

我在部署云功能时遇到以下问题(我对 gcp 和 terraform 完全陌生)

我正在尝试通过 terraform 部署云功能;但问题是,当我部署它时,即使云函数名称、存储桶对象名称和存档文件名不同(只有存储桶名称和项目 ID 是一样)

看起来它正在采取已经部署的现有云功能的状态

有没有办法保持现有状态不受影响?

代码片段(如上所述,已经有一个云函数部署了相同的项目ID和bucket)

main.tf:
provider "google" {
  project = "peoject_id"
  credentials = "cdenetialfile"
  region  = "some-region"
}

locals {
  timestamp = formatdate("YYMMDDhhmmss", timestamp())
    root_dir = abspath("./app/")
}

data "archive_file" "archive" {
  type        = "zip"
  output_path = "/tmp/function-${local.timestamp}.zip"
  source_dir = local.root_dir
}

resource "google_storage_bucket_object" "object_archive" {
  name   = "archive-${local.timestamp}.zip"
  bucket = "dev-bucket-tfstate"
  source = "/tmp/function-${local.timestamp}.zip"
  depends_on = [data.archive_file.archive]
  
}


resource "google_cloudfunctions_function" "translator_function" {
  name = "Cloud_functionname"
  available_memory_mb = 256
  timeout = 61
  runtime = "java11"
  source_archive_bucket = "dev-bucket-tfstate"
  source_archive_object = google_storage_bucket_object.object_archive.name
  entry_point = "com.test.controller.myController"
  event_trigger {
    event_type = "google.pubsub.topic.publish"
    resource = "topic_name"
  }
}


后端.tf

terraform {
  backend "gcs" {
    bucket = "dev-bucket-tfstate"
    credentials = "cdenetialfile"
  }
}





0 个答案:

没有答案