oci_gdp_gdp_pipeline

This resource provides the Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/

Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/gdp

Creates a new pipeline.

Example Usage

resource "oci_gdp_gdp_pipeline" "test_gdp_pipeline" {
	#Required
	bucket_details {
		#Required
		bucket_type = var.gdp_pipeline_bucket_details_bucket_type
		id = var.gdp_pipeline_bucket_details_id
		name = var.gdp_pipeline_bucket_details_name
		namespace = var.gdp_pipeline_bucket_details_namespace
	}
	compartment_id = var.compartment_id
	display_name = var.gdp_pipeline_display_name
	peering_region = var.gdp_pipeline_peering_region
	pipeline_type = var.gdp_pipeline_pipeline_type

	#Optional
	approval_key_vault_id = oci_kms_vault.test_vault.id
	authorization_details = var.gdp_pipeline_authorization_details
	defined_tags = {"foo-namespace.bar-key"= "value"}
	description = var.gdp_pipeline_description
	env = var.gdp_env
	file_types = var.gdp_pipeline_file_types
	freeform_tags = {"bar-key"= "value"}
	is_approval_needed = var.gdp_pipeline_is_approval_needed
	is_chunking_enabled = var.gdp_pipeline_is_chunking_enabled
	is_file_override_in_destination_enabled = var.gdp_pipeline_is_file_override_in_destination_enabled
	is_scanning_enabled = var.gdp_pipeline_is_scanning_enabled
	service_log_group_id = oci_logging_log_group.test_log_group.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 20 minutes), when creating the Gdp Pipeline * update - (Defaults to 20 minutes), when updating the Gdp Pipeline * delete - (Defaults to 20 minutes), when destroying the Gdp Pipeline

Import

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

$ terraform import oci_gdp_gdp_pipeline.test_gdp_pipeline "id"