oci_identity_domains_cloud_gate_mapping

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

Create a Cloud Gate mapping

Example Usage

resource "oci_identity_domains_cloud_gate_mapping" "test_cloud_gate_mapping" {
    #Required
    cloud_gate {
        #Required
        value = var.cloud_gate_mapping_cloud_gate_value
    }
    gateway_app {
        #Required
        name = var.cloud_gate_mapping_gateway_app_name
        value = var.cloud_gate_mapping_gateway_app_value
    }
    idcs_endpoint = data.oci_identity_domain.test_domain.url
    policy_name = oci_identity_policy.test_policy.name
    resource_prefix = var.cloud_gate_mapping_resource_prefix
    schemas = ["urn:ietf:params:scim:schemas:oracle:idcs:CloudGateMapping"]
    server {
        #Required
        value = var.cloud_gate_mapping_server_value
    }

    #Optional
    attribute_sets = ["all"]
    attributes = ""
    authorization = var.cloud_gate_mapping_authorization
    description = var.cloud_gate_mapping_description
    id = var.cloud_gate_mapping_id
    is_opc_service = var.cloud_gate_mapping_is_opc_service
    nginx_settings = var.cloud_gate_mapping_nginx_settings
    ocid = var.cloud_gate_mapping_ocid
    proxy_pass = var.cloud_gate_mapping_proxy_pass
    resource_type_schema_version = var.cloud_gate_mapping_resource_type_schema_version
    tags {
        #Required
        key = var.cloud_gate_mapping_tags_key
        value = var.cloud_gate_mapping_tags_value
    }
    upstream_server_group {

        #Optional
        ssl = var.cloud_gate_mapping_upstream_server_group_ssl
        value = var.cloud_gate_mapping_upstream_server_group_value
    }
}

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

Import

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

$ terraform import oci_identity_domains_cloud_gate_mapping.test_cloud_gate_mapping "idcsEndpoint/{idcsEndpoint}/cloudGateMappings/{cloudGateMappingId}"