BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
5 / 18 · Module 8 — Configuration and Security · filtered: cheatsheet← prev⊞ allnext →

8.5Basic property reference syntax

You will commonly see:

${property.name}

Example:

host="${billing.host}"
port="${billing.port}"

Conceptually:

process.env.BILLING_HOST

although Mule's configuration mechanisms aren't literally Node environment variables.

Think:

${...} = resolve configuration property.