Data Source: oci_dataflow_run_log
This data source provides details about a specific Run Log resource in Oracle Cloud Infrastructure Data Flow service.
Retrieves the content of an run log.
Example Usage
data "oci_dataflow_run_log" "test_run_log" {
	#Required
	name = var.run_log_name
	run_id = oci_dataflow_run.test_run.id
}
Argument Reference
The following arguments are supported:
- name- (Required) The name of the log. Avoid entering confidential information.
- run_id- (Required) The unique ID for the run
- base64_encode_content- (Optional) Encodes the downloaded content in base64. It is recommended to set this to- truefor binary content to avoid corrupting the zip file in Terraform state. The default value is- falseto preserve backwards compatibility with Terraform v0.11 configurations. If passing the base64 encoded content to a- local_fileresource, please use the- content_base64attribute of the- local_fileresource.
Attributes Reference
The following attributes are exported:
- content- The content of the run log.
- content_type- The content type of the run log.