oci_identity_domains_cloud_gate

This resource provides the Cloud Gate resource in Oracle Cloud Infrastructure Identity Domains service.

Create a Cloud Gate

Example Usage

resource "oci_identity_domains_cloud_gate" "test_cloud_gate" {
    #Required
    display_name = var.cloud_gate_display_name
    idcs_endpoint = data.oci_identity_domain.test_domain.url
    schemas = ["urn:ietf:params:scim:schemas:oracle:idcs:CloudGate"]

    #Optional
    active = var.cloud_gate_active
    attribute_sets = ["all"]
    attributes = ""
    authorization = var.cloud_gate_authorization
    description = var.cloud_gate_description
    last_modified_time = "2000-01-01T00:00:00Z"
    ocid = var.cloud_gate_ocid
    resource_type_schema_version = var.cloud_gate_resource_type_schema_version
    tags {
        #Required
        key = var.cloud_gate_tags_key
        value = var.cloud_gate_tags_value
    }
    type = var.cloud_gate_type
}

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

Import

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

$ terraform import oci_identity_domains_cloud_gate.test_cloud_gate "idcsEndpoint/{idcsEndpoint}/cloudGates/{cloudGateId}"