Closed
Description
I'm trying to configure multiple ConnectionFilterRule
entries which would appear in config.xml as:
<connection-filter-rule>0.0.0.0/0 * * allow http https</connection-filter-rule>
<connection-filter-rule>0.0.0.0/0 * * allow t3 t3s</connection-filter-rule>
I have tried comma delimited string:
SecurityConfiguration:
ConnectionFilterRule: '0.0.0.0/0 * * allow http https,0.0.0.0/0 * * allow t3 t3s'
A semi-colon delimited string:
SecurityConfiguration:
ConnectionFilterRule: '0.0.0.0/0 * * allow http https;0.0.0.0/0 * * allow t3 t3s'
And a comma separated list:
SecurityConfiguration:
ConnectionFilterRule: [
'0.0.0.0/0 * * allow http https',
'0.0.0.0/0 * * allow t3 t3s'
]
All three methods produce a single rule with the whole string as the value including the delimiter, eg:
<connection-filter-rule>0.0.0.0/0 * * allow http https,0.0.0.0/0 * * allow t3 t3s</connection-filter-rule>
Metadata
Metadata
Assignees
Labels
No labels