oci_dataintegration_workspace_project

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

Creates a project. Projects are organizational constructs within a workspace that you use to organize your design-time resources, such as tasks or data flows. Projects can be organized into folders.

Example Usage

resource "oci_dataintegration_workspace_project" "test_workspace_project" {
    #Required
    identifier = var.workspace_project_identifier
    name = var.workspace_project_name
    workspace_id = oci_dataintegration_workspace.test_workspace.id

    #Optional
    description = var.workspace_project_description
    key = var.workspace_project_key
    model_version = var.workspace_project_model_version
    object_status = var.workspace_project_object_status
    registry_metadata {

        #Optional
        aggregator_key = var.workspace_project_registry_metadata_aggregator_key
        is_favorite = var.workspace_project_registry_metadata_is_favorite
        key = var.workspace_project_registry_metadata_key
        labels = var.workspace_project_registry_metadata_labels
        registry_version = var.workspace_project_registry_metadata_registry_version
    }
}

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

Import

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

$ terraform import oci_dataintegration_workspace_project.test_workspace_project "workspaces/{workspaceId}/projects/{projectKey}"