Configuration empty in Rules handler

I have a rule defined that accesses a configuration value.

function (user, context, callback) {
  console.log('config', configuration);
  callback(null, user, context);
}

Whenever I execute this rule I see config {} despite having several configuration values set.

When I try to access the configuration values I get undefined.

1 Like

3 posts were merged into an existing topic: Global Configuration in Rules always returns {}