oci_devops_deploy_pipeline

This resource provides the Deploy Pipeline resource in Oracle Cloud Infrastructure Devops service.

Creates a new deployment pipeline.

Example Usage

resource "oci_devops_deploy_pipeline" "test_deploy_pipeline" {
	#Required
	project_id = oci_devops_project.test_project.id

	#Optional
	defined_tags = {"foo-namespace.bar-key"= "value"}
	deploy_pipeline_parameters {
		#Required
		items {
			#Required
			name = var.deploy_pipeline_deploy_pipeline_parameters_items_name

			#Optional
			default_value = var.deploy_pipeline_deploy_pipeline_parameters_items_default_value
			description = var.deploy_pipeline_deploy_pipeline_parameters_items_description
		}
	}
	description = var.deploy_pipeline_description
	display_name = var.deploy_pipeline_display_name
	freeform_tags = {"bar-key"= "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 Deploy Pipeline * update - (Defaults to 20 minutes), when updating the Deploy Pipeline * delete - (Defaults to 20 minutes), when destroying the Deploy Pipeline

Import

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

$ terraform import oci_devops_deploy_pipeline.test_deploy_pipeline "id"