Hey Folks. I’m curious if anyone can help me with a terraform issue I’m having with the eventstorecloud provider. Essentially, I’ve gone through the steps highlighted here: https://github.com/EventStore/esc to create a token with the command line tool, esc. With that token, I input it in my terraform provider code, using the token id of my auhentication token:
token = <my_token_id>
organization_id = "<my_org_id>
}
I attempt to create a project:
resource "eventstorecloud_project" "example" {
name = var.project_name
}
However, it seems to fail. I am getting error messages concerning refresh tokens. Has anyone run into an issue like this or have an idea of how to resolve this? I am under the impression I’ve done the right auth flow, but maybe I didn’t. Pic below: