This resource provides the Rule resource in Oracle Cloud Infrastructure Events service.
Creates a new rule.
resource "oci_events_rule" "test_rule" {
#Required
actions {
#Required
actions {
#Required
action_type = var.rule_actions_actions_action_type
is_enabled = var.rule_actions_actions_is_enabled
#Optional
description = var.rule_actions_actions_description
function_id = oci_functions_function.test_function.id
stream_id = oci_streaming_stream.test_stream.id
topic_id = oci_ons_notification_topic.test_topic.id
}
}
compartment_id = var.compartment_id
condition = var.rule_condition
display_name = var.rule_display_name
is_enabled = var.rule_is_enabled
#Optional
defined_tags = {"Operations.CostCenter"= "42"}
description = var.rule_description
freeform_tags = {"Department"= "Finance"}
}
The following arguments are supported:
actions
- (Required) (Updatable) A list of ActionDetails objects to create for a rule.
actions
- (Required) (Updatable) A list of one or more ActionDetails objects.
action_type
- (Required) (Updatable) The action to perform if the condition in the rule matches an event.
description
- (Optional) (Updatable) A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information. function_id
- (Applicable when action_type=FAAS) (Updatable) The OCID of a Function hosted by Oracle Functions Service. is_enabled
- (Required) (Updatable) Whether or not this action is currently enabled. Example: true
stream_id
- (Required when action_type=OSS) (Updatable) The OCID of the stream to which messages are delivered. topic_id
- (Applicable when action_type=ONS) (Updatable) The OCID of the topic to which messages are delivered. compartment_id
- (Required) (Updatable) The OCID of the compartment to which this rule belongs. condition
- (Required) (Updatable) A filter that specifies the event that will trigger actions associated with this rule. A few important things to remember about filters:
{}
For more examples, see Matching Events with Filters.
For a list of reference events, see Services that Produce Events.
For examples of wildcard matching, see Matching Events with Filters
Example: \"eventType\": \"com.oraclecloud.databaseservice.autonomous.database.backup.end\"
defined_tags
- (Optional) (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
description
- (Optional) (Updatable) A string that describes the details of the rule. It does not have to be unique, and you can change it. Avoid entering confidential information. display_name
- (Required) (Updatable) A string that describes the rule. It does not have to be unique, and you can change it. Avoid entering confidential information. freeform_tags
- (Optional) (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example: {"Department": "Finance"}
is_enabled
- (Required) (Updatable) Whether or not this rule is currently enabled. Example: true
For more examples, see Matching Events with Filters.
For a list of reference events, see Services that Produce Events.
For examples of wildcard matching, see Matching Events with Filters
Example: \"eventType\": \"com.oraclecloud.databaseservice.autonomous.database.backup.end\"
defined_tags
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
description
- A string that describes the details of the rule. It does not have to be unique, and you can change it. Avoid entering confidential information. display_name
- A string that describes the rule. It does not have to be unique, and you can change it. Avoid entering confidential information. Example: "This rule sends a notification upon completion of DbaaS backup."
freeform_tags
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example: {"Department": "Finance"}
id
- The OCID of this rule. is_enabled
- Whether or not this rule is currently enabled. Example: true
lifecycle_message
- A message generated by the Events service about the current state of this rule. state
- The current state of the rule. time_created
- The time this rule was created, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
The timeouts
block allows you to specify timeouts for certain operations:
* create
- (Defaults to 20 minutes), when creating the Rule
* update
- (Defaults to 20 minutes), when updating the Rule
* delete
- (Defaults to 20 minutes), when destroying the Rule
Rules can be imported using the id
, e.g.
$ terraform import oci_events_rule.test_rule "id"