oci_service_catalog_private_application

This resource provides the Private Application resource in Oracle Cloud Infrastructure Service Catalog service.

Creates a private application along with a single package to be hosted.

Example Usage

resource "oci_service_catalog_private_application" "test_private_application" {
	#Required
	compartment_id = var.compartment_id
	display_name = var.private_application_display_name
	package_details {
		#Required
		package_type = var.private_application_package_details_package_type
		version = var.private_application_package_details_version

		#Optional
		zip_file_base64encoded = var.private_application_package_details_zip_file_base64encoded
	}
	short_description = var.private_application_short_description

	#Optional
	defined_tags = {"foo-namespace.bar-key"= "value"}
	freeform_tags = {"bar-key"= "value"}
	logo_file_base64encoded = var.private_application_logo_file_base64encoded
	long_description = var.private_application_long_description
}

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

Import

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

$ terraform import oci_service_catalog_private_application.test_private_application "id"