Description
My Issue is I have the following code:
resource "coder_app" "gateway" {
agent_id = coder_agent.main.id
slug = "gateway"
display_name = "IntelliJ IDEA Ultimate"
icon = "/icon/intellij.svg"
external = true
order = 1
url = join("", [
"jetbrains-gateway://connect#type=coder",
"&workspace=", data.coder_workspace.me.name,
"&owner=", data.coder_workspace_owner.me.name,
"&folder=", "/home/coder/workspace",
"&url=", data.coder_workspace.me.access_url,
"&token=", "$SESSION_TOKEN",
"&ide_product_code=IU",
"&ide_path_on_host=/opt/idea",
"&ide_build_number=251.26927.53"
])
}
When I click on the handler is shows the error at the bottom, and then continues through and loads my environment.
I have the same error with the toolbox
How do I get rid if of this error popup?