Available in VPC
You can add the Resource Manager type trigger on the NAVER Cloud Platform console's Cloud Functions > Action > Action details.
Resource Manager is a service that enables integrated management of all resources created in the NAVER Cloud Platform. You can check detection status whenever resources are created or changed by setting monitoring conditions of status and properties for certain resources and run Cloud Functions actions when detected.
- For more information on Resource Manager service, see Service > Management & Governance > Resource Manager menu on the NAVER Cloud Platform portal.
- The Resource Manager type trigger is supported only in Korea Region and on the VPC platform.
Add trigger
To add Resource Manager type triggers, click to select Resource Manager in the trigger type and set the Observer connection information.
Set connection information
You can set connection for Resource Manager type triggers in the Resource Manager connection information menu of the console.

- Select the Observer to connect in the Observer list and click the "Create" button.
- Click the [Create Observer] button to go to the Resource Manager service console and create a new Observer.
Events forwarded to trigger
When a detection event occurs in Observer of Resource Manager, the connected Cloud Functions action is executed. Then, the forwarded event data can be used as parameters within the action code for various applications. The format of the event data forwarded from Resource Manager is as follows:
{
"observerId": "", // Observer ID
"observerName": "", // Observer name
"detectRules": [ // Detection rules
],
"detectTypes": [ // Detection types
],
"detectValues": [ // Detection values
],
"detectedAt": "", // Time of Observer detection
"nrn": "", // Detection target nrn
"action": "", // Detected resource task
"sourceIp": "", // Resource task request IP
"eventTime": 0 // Time of resource task occurrence
}