【发布时间】:2020-05-10 01:18:42
【问题描述】:
在 Terraform 中,有没有办法设置一个属性,使其不会触发资源更新?
例子:
resource "google_cloudfunctions_function" "sometimes_changes" {
...
# label the function with timestamp - don't let this trigger an update.
labels = {
timestamp = timestamp
}
}
【问题讨论】:
标签: terraform terraform-provider-gcp