In this little blog, I will walk you thru how to access secure properties in dataweave 2.0.
I assume you havecreated andencrypted your properties. Once you configure the properties, you can read secure properties within mule component such as database, file, etc,
Accessing in Mule Components
For example, to read the secure properties in set payload - you can write xml like below,
<flow name="sample"> <set-payload value="${secure::encrypted.key}"/></flow>
Accessing in DataWeave
To access secure properties in dataweave script, you need to usep() as shown below:
%dw 2.0output application/json---{ password: p('secure::encrypted.key')}
That's simple. I hope you learned something from this little blog. For more MuleSoft article, news and support - visitVanchiv.
Top comments(0)
For further actions, you may consider blocking this person and/orreporting abuse