I came across TFE Provider during experimenting with Terraform Cloud. I do not see any good use case since I can set everything with *.auto.tvars.
Apart from that I tried it with an arbitrary 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
}
However this always results in:
Error: Error creating terraform variable listTest: resource not found
I do not understand the sense of this message with the block above I want to create this very variable.