So I have a provisioning workflow, and have added a task that keeps bombing out. The task is very simple (bash):
Gather Data
Use them in curl calls
I’ve tried this in both provision and post-provision, but both fail with the error message of: Task Execution Failed on Attempt 1
No such property: user
If I run the same workflow as an operational this works just fine.
it seems the lines in question are:
I created a new task, made sure the variables were hard coded names (for displayname and email) and still received the same error.
Also a point to note, I only seem to get that error when I set the task to run local as the execute target. If I set it to the “worker system” (remote to a host that handles tasks), I don’t get any output (even my bash echo’s). It just fails with Task Execution Failed on Attempt.
So just a note on that script for the future. If you comment out a line with a Morpheus variable, we still do a find replace, so the fact that the <%=user.email%> is in there it’s still going to get interpreted by Morpheus. That said:
If you just have a task echo "<%=user%>" and only run that, what do you get?
That’s good to know that comments with morpheus variables are still parsed! Thanks for that.
The version is 5.4.11, we will be upgrading to whatever the latest LTS is at the start of Q2.
Running the task without any <%=user%> variables in the code at all, works like a champ (but not being able to get the user executing the workflow/provision is problematic).
Adding back in the user variable with echo "<%=user%>" gives me the failure.
Could it be an integration that breaks the available vars?
We have route 53, shared services, AWX (Ansible Tower) and Bitbucket enabled.
My only other idea is one of your secrets is breaking the quoting of the rest of your script. If your access or secret key have a " in it, it may be getting interpreted funky by the wrapping double quotes. If so, you could invert the wrapper like accesskey='<%= cypher.read("secret/accesskey") %>'
If you just do the echo user as it’s own task and run it, does that also break?
Fails on provision and post provision. It very clearly does not like the user object.
It works perfectly fine in an operational workflow.
I guess I could write some go code that gets called from the provisioning workflow, in a thread (goroutine), so that it can return immediately (so the provisioning workflow completes), wait and then kicks off the workflow as an operational to get all the variables it needs.
I’ve got it working by bypassing the use of the user variable. Now, I have a task that kicks off a routine that polls (every minute) morpheus for the GET instances api, and pulls the necessary data from that. Not ideal, but it works for now.
Just so I’m not crazy, using <%= user %> in a provisioning workflow does work for you though right?
Correct it works for me. May need a support case to understand why it’s not available to you. There’s also instance vars for display name and email those may get you past issues.