Create a cloud policy › Policies for Cloud Provisioning › Cloud Admin Portal › Cloud Provisioning and Governance administration guide › Cloud Provisioning and Governance › ITOM Cloud Accelerate › IT Operations Management
Create an action for an 'on Resource operation' policy
The on Resource operation trigger fires during the Orchestration process when a user performs a Start, Stop, or Deprovision life cycle operation on a specific resource. A policy that is triggered by the on Resource operation trigger can override a user-requested attribute value, run a script, call a Cloud API, or perform an IP address management operation.
Before you begin
Procedure
In the Cloud Admin Portal, navigate to Govern > Policies.
Open a cloud policy and set the policy to the Draft state if needed.
Open the rule that should perform the action and then click New on the Policy Rule Actions related list.
On the popup, click Create for the type of action to perform, enter a unique and meaningful Action Name, and then fill in the form for the action.
Image omitted: action-on-resource-operation.png
Create Action popup
| Field | Description |
|---|
| Property | Specify the name of the property \(attribute\) on the user request form to override. |
| Value | Enter a value that overrides the value in the Property field. You can override text values only. You can specify a static value, an expression, or both. The example action, named SetTheCostCenter, specifies the value Marketing for the CostCenter property. Image omitted: action-property-override.png Configure a Property Override action</p> Note: When both a policy rule and a form rule overwrite a value, the value in the form rule is used. Expressions can perform the following actions (see Using expressions in Cloud Provisioning and Governance for details): - Set form data values using definition expressions. For example:
${parameter.formData.CatalogAttributeType} - Assign user data values using definition expressions. For example:
${parameter.userData.userId} For example, the following value can set the stack name to Stack_Bob.Smith@company.com: Stack_${parameter.userData.userId} - Set stack or table values using runtime expressions.
For example: $(ci.sn_cmp_ip_pool[subnet=${parameter.formData.Subnet Id}]) takes the subnet from the IP Pools table. - Associate a random number with a field using static expressions. Use:
${randomNumber}
|
| Is Script Based | Select the check box to display the Script text box and then specify the script.You can use the following example script snippet to override a stack name. The function( formData) section of the script modifies the values for fields on the form. MyStack is the stack name in this example. customScript : function( formData){
// Manipulation of form parameter is only supported here.
// Change in any other attributes will be ignored
// data available for manipulation are
// Form Data - Ex. StackName can be accessed
// through formData.StackName
// formData.StackName = "MyStack";
// User Data - Ex. User Id can be accessed
// through this.parameters.userData
// if(this.parameter.userData.userId == 'servicenowuserId')
formData.StackName = "MyStack";
return formData;
},</p>
<p>
```</p></td></tr></tbody>
</table>
<table id="table_nbq_j2h_sfb"><thead><tr><th>
Field
</th><th>
Description
</th></tr></thead><tbody><tr><td>
Action Script Category
</td><td>
Select a category.
</td></tr><tr><td>
Action Script Name
</td><td>
Specify a unique and meaningful name for the script.
</td></tr><tr><td>
Action Script
</td><td>
Create the script in the text box.See [Create a policy action script]() for details.
</td></tr></tbody>
</table>
If you select the **Call Cloud API** action type and save the record, the Policy Rule Action Attributes related list is populated with the attributes to pass to the provider. If you are integrating with Infoblox, you must configure the **DNSSuffix** field. When you create a host, for example, the value in the **DNSSuffix** field appears in Infoblox for the newly created virtual machine.
<table id="table_pmz_12p_sfb"><thead><tr><th>
Field
</th><th>
Description
</th></tr></thead><tbody><tr><td>
Action Name
</td><td>Enter a descriptive name for the action. In subsequent policy actions for the same policy, you can reference this name in a <strong>Value</strong> field. It refers to the JSON payload that is received from the cloud provider after an API call. For example, to reference an allocated IP address that was returned by the action that is named RefAction, you can use the following expression in the <strong>Value</strong> field of another policy action: <code>$(parameter.RefAction.Allocated_IP}</code>.</td></tr><tr><td>
Provider
</td><td>
Enter the cloud provider from the API library.
</td></tr><tr><td>
Version
</td><td>
Enter the version from the API library.
</td></tr><tr><td>
Interface
</td><td>Select a CAPI interface. For Infoblox, select <strong>IPAM interface</strong>.</td></tr><tr><td>
Operation
</td><td>Select a CAPI interface operation to perform. For Infoblox, select <strong>CreateHostRecord</strong> or <strong>DeleteHostRecord</strong>.</td></tr><tr><td>
Credentials
</td><td>
Enter the sys\_ID of the necessary credentials. You can also use an expression like:
$(ci.sn_cmp_infoblox_server[$(ci.sn_cmp_ip_pool[subnet=${parameter.formData.SubnetId}].provider_instance)].infoblox_server_credential) ``` |
| Endpoint URL | Enter the endpoint URL of the connector from the API library. For Infoblox, it is the IP address of the Infoblox server. |
Parent Topic:Create a cloud policy