我在尝试 Terraform Cloud 时遇到了 TFE Provider。我没有看到任何好的用例,因为我可以使用 *.auto.tvars 设置所有内容。
除此之外,我使用任意 tfe_variable 进行了尝试:
provider "tfe" {
}
resource "tfe_variable" "test" {
key = "listTest"
value = "logs, datatransfer"
category = "terraform"
workspace_id = "my_workspace"
hcl = true
description = "a useful description"
sensitive = false
}
然而,这总是导致:
Error: Error creating terraform variable listTest: resource not found
我不明白这个消息与上面的块的含义我想创建这个非常变量。