oci_dataintegration_workspace

This resource provides the Workspace resource in Oracle Cloud Infrastructure Data Integration service.

Creates a new Data Integration workspace ready for performing data integration tasks. To retrieve the OCID for the new workspace, use the opc-work-request-id returned by this API and call the GetWorkRequest API.

Example Usage

resource "oci_dataintegration_workspace" "test_workspace" {
	#Required
	compartment_id = var.compartment_id
	display_name = var.workspace_display_name

	#Optional
	defined_tags = {"Operations.CostCenter"= "42"}
	description = var.workspace_description
	dns_server_ip = var.workspace_dns_server_ip
	dns_server_zone = var.workspace_dns_server_zone
	endpoint_compartment_id = oci_identity_compartment.test_compartment.id
	endpoint_id = oci_dataintegration_endpoint.test_endpoint.id
	endpoint_name = var.workspace_endpoint_name
	freeform_tags = {"Department"= "Finance"}
	is_private_network_enabled = var.workspace_is_private_network_enabled
	registry_compartment_id = oci_identity_compartment.test_compartment.id
	registry_id = oci_data_connectivity_registry.test_registry.id
	registry_name = oci_data_connectivity_registry.test_registry.name
	subnet_id = oci_core_subnet.test_subnet.id
	vcn_id = oci_core_vcn.test_vcn.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 1 hours), when creating the Workspace * update - (Defaults to 1 hours), when updating the Workspace * delete - (Defaults to 1 hours), when destroying the Workspace

Import

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

$ terraform import oci_dataintegration_workspace.test_workspace "id"