oci_apm_synthetics_dedicated_vantage_point

This resource provides the Dedicated Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.

Registers a new dedicated vantage point.

Example Usage

resource "oci_apm_synthetics_dedicated_vantage_point" "test_dedicated_vantage_point" {
    #Required
    apm_domain_id = oci_apm_apm_domain.test_apm_domain.id
    display_name = var.dedicated_vantage_point_display_name
    dvp_stack_details {
        #Required
        dvp_stack_id = oci_resourcemanager_stack.test_stack.id
        dvp_stack_type = var.dedicated_vantage_point_dvp_stack_details_dvp_stack_type
        dvp_stream_id = oci_streaming_stream.test_stream.id
        dvp_version = var.dedicated_vantage_point_dvp_stack_details_dvp_version
    }
    region = var.dedicated_vantage_point_region

    #Optional
    defined_tags = {"foo-namespace.bar-key"= "value"}
    freeform_tags = {"bar-key"= "value"}
    status = var.dedicated_vantage_point_status
}

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 Dedicated Vantage Point * update - (Defaults to 20 minutes), when updating the Dedicated Vantage Point * delete - (Defaults to 20 minutes), when destroying the Dedicated Vantage Point

Import

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

$ terraform import oci_apm_synthetics_dedicated_vantage_point.test_dedicated_vantage_point "dedicatedVantagePoints/{dedicatedVantagePointId}/apmDomainId/{apmDomainId}"