oci_cloud_guard_target

This resource provides the Target resource in Oracle Cloud Infrastructure Cloud Guard service.

Creates a new Target

Example Usage

resource "oci_cloud_guard_target" "test_target" {
    #Required
    compartment_id = var.compartment_id
    display_name = var.target_display_name
    target_resource_id = oci_cloud_guard_target_resource.test_target_resource.id
    target_resource_type = var.target_target_resource_type

    #Optional
    defined_tags = {"foo-namespace.bar-key"= "value"}
    description = var.target_description
    freeform_tags = {"bar-key"= "value"}
    state = var.target_state
    target_detector_recipes {
        #Required
        detector_recipe_id = oci_cloud_guard_detector_recipe.test_detector_recipe.id

        #Optional
        detector_rules {
            #Required
            details {

                #Optional
                condition_groups {
                    #Required
                    compartment_id = var.compartment_id
                    condition = var.target_target_detector_recipes_detector_rules_details_condition_groups_condition
                }
            }
            detector_rule_id = oci_events_rule.test_rule.id
        }
    }
    target_responder_recipes {
        #Required
        responder_recipe_id = oci_cloud_guard_responder_recipe.test_responder_recipe.id

        #Optional
        responder_rules {
            #Required
            details {

                #Optional
                condition = var.target_target_responder_recipes_responder_rules_details_condition
                configurations {
                    #Required
                    config_key = var.target_target_responder_recipes_responder_rules_details_configurations_config_key
                    name = var.target_target_responder_recipes_responder_rules_details_configurations_name
                    value = var.target_target_responder_recipes_responder_rules_details_configurations_value
                }
                mode = var.target_target_responder_recipes_responder_rules_details_mode
            }
            responder_rule_id = oci_events_rule.test_rule.id
        }
    }
}

Argument Reference

The following arguments are supported:

* IMPORTANT * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Target * update - (Defaults to 20 minutes), when updating the Target * delete - (Defaults to 20 minutes), when destroying the Target

Import

Targets can be imported using the id, e.g.

$ terraform import oci_cloud_guard_target.test_target "id"