oci_fleet_software_update_fsu_readiness_check

This resource provides the Fsu Readiness Check resource in Oracle Cloud Infrastructure Fleet Software Update service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/edsfu/latest/FsuReadinessCheck

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

Creates a new Exadata Fleet Update Readiness Check.

Example Usage

resource "oci_fleet_software_update_fsu_readiness_check" "test_fsu_readiness_check" {
	#Required
	compartment_id = var.compartment_id
	type = var.fsu_readiness_check_type

	#Optional
	defined_tags = {"foo-namespace.bar-key"= "value"}
	display_name = var.fsu_readiness_check_display_name
	freeform_tags = {"bar-key"= "value"}
	targets {
		#Required
		entity_id = oci_fleet_software_update_entity.test_entity.id
		entity_type = var.fsu_readiness_check_targets_entity_type
	}
}

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

Import

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

$ terraform import oci_fleet_software_update_fsu_readiness_check.test_fsu_readiness_check "id"