You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AS AN Architect
I WANT Ruuter to have the functionality to make REST calls with dynamic request structures when explicitly allowed
SO THAT Ruuter could make requests to any external endpoints without defining the request structure as part of Ruuter DSL
Acceptance Criteria
AS IS
The following is a default Ruuter DSL structure to make a REST call. It requires pre-defined request parameters within the args section for call: http.*
AS AN Architect
I WANT Ruuter to have the functionality to make REST calls with dynamic request structures when explicitly allowed
SO THAT Ruuter could make requests to any external endpoints without defining the request structure as part of Ruuter DSL
Acceptance Criteria
AS IS
TO BE
allowDynamicParameters
has to be defined astrue
to explicitly allow dynamic request variables with the scope of this specific step onlyallowDynamicParameters: true
is defined, this will generateWARN
in logs to indicate that potentially insecure requests are madearray
within the keydynamicParameters
dynamicParameters
variables are mapped based oncall
type (http.post
,http.get
, etc.)The text was updated successfully, but these errors were encountered: