-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest-mule-config.xml
21 lines (16 loc) · 1.09 KB
/
test-mule-config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aws-secrets-properties-provider="http://www.mulesoft.org/schema/mule/aws-secrets-properties-provider"
xsi:schemaLocation="http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/aws-secrets-properties-provider http://www.mulesoft.org/schema/mule/aws-secrets-properties-provider/current/mule-aws-secrets-properties-provider.xsd">
<aws-secrets-properties-provider:config name="Aws_Secrets_Properties_Provider_Config" region="${aws.region}" secretKey="${aws.secretKey}" accessKey="${aws.accessKey}" />
<flow name="standardSecretFlow">
<set-payload value="${aws-secret::dev/adamsecret}" />
</flow>
<flow name="jsonSecretFlow">
<set-payload value="${aws-secret::dev/adamsecretc}" />
</flow>
<flow name="jsonSecretFlowUsername">
<set-payload value="${aws-secret::dev/adamsecretc#username}/${aws-secret::dev/adamsecretc#password}" />
</flow>
</mule>