<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Hide Task Output but use the value in another Task in HPE Morpheus Enterprise Software</title>
    <link>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248354#M1528</link>
    <description>&lt;P&gt;Even though this is good option, the issue will be that there could be users running the task at the same time which may collide with the Cypher variable.&lt;BR /&gt;
Anyhow, Could you please provide some examples to update the Cypher directly. Anyhow, I know there is an option using the API.&lt;/P&gt;</description>
    <pubDate>Thu, 14 Mar 2024 14:54:05 GMT</pubDate>
    <dc:creator />
    <dc:date>2024-03-14T14:54:05Z</dc:date>
    <item>
      <title>Hide Task Output but use the value in another Task</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248350#M1524</link>
      <description>&lt;P&gt;I need to retrieve a sensitive information from a remote endpoint using Rest API calls. But I don’t want this information to be displayed on the Task Output. But I want that output value to another task. Also I dont want to merge this two task because that first task needs to be reused for multiple other tasks. Please advise.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 21:48:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248350#M1524</guid>
      <dc:creator />
      <dc:date>2024-03-13T21:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Task Output but use the value in another Task</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248351#M1525</link>
      <description>&lt;P&gt;The best option is probably writing the value to cypher in the first script.  Then you could either have a task clean up the cypher, or just each run pulls the latest value and the cypher value.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 11:26:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248351#M1525</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2024-03-14T11:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Task Output but use the value in another Task</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248352#M1526</link>
      <description>&lt;P&gt;(post deleted by author)&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 04:10:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248352#M1526</guid>
      <dc:creator />
      <dc:date>2024-03-19T04:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Task Output but use the value in another Task</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248353#M1527</link>
      <description>&lt;P&gt;Very good idea. Depending on how often this task is executed and how long the respective information remains relevant, the Cypher entry could also be designed accordingly. The task ID, the instance name or similar could be used in the name. In addition, a separate mount point could be created for clarity.&lt;BR /&gt;
&amp;lt;%= cypher.read("secret\MountPointName" + results.blah) %&amp;gt;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Mar 2024 16:01:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248353#M1527</guid>
      <dc:creator />
      <dc:date>2024-03-17T16:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Task Output but use the value in another Task</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248354#M1528</link>
      <description>&lt;P&gt;Even though this is good option, the issue will be that there could be users running the task at the same time which may collide with the Cypher variable.&lt;BR /&gt;
Anyhow, Could you please provide some examples to update the Cypher directly. Anyhow, I know there is an option using the API.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 14:54:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248354#M1528</guid>
      <dc:creator />
      <dc:date>2024-03-14T14:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Task Output but use the value in another Task</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248355#M1529</link>
      <description>&lt;P&gt;I would take a look at generating a cypher with a randomly generated name.  Pass that as the output of your results.  Then the following calls could use something like&lt;/P&gt;
&lt;P&gt;&lt;CODE style="background : #f0f1f2;"&gt;&amp;lt;%= cypher.read("secret\" + results.blah) %&amp;gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;Cypher API docs can be found &lt;A href="https://apidocs.morpheusdata.com/reference/addcypherkey"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;If you have further issues or require demonstration of this flow, I would recommend opening a Technical Request at &lt;A href="https://support.morpheusdata.com"&gt;https://support.morpheusdata.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 15:19:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise-software/hide-task-output-but-use-the-value-in-another-task/m-p/7248355#M1529</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2024-03-14T15:19:37Z</dc:date>
    </item>
  </channel>
</rss>

