Question 1
A team has built a hardened, fully patched custom image in their primary OCI region and now needs to launch instances from that exact image in a second region to stand up a disaster-recovery environment. What must they do to make the image usable in the second region?
A. Nothing — custom images are tenancy-wide global resources, so the image is already selectable when launching an instance in any subscribed region.
Treats a custom image like a global resource (such as a compartment or IAM policy). Custom images are scoped to the region in which they were created and are not automatically present in other regions.
B. Copy the custom image to the destination region (or export it to Object Storage and import it there), then launch instances from the copy in that region.Correct answer
Correct. Because a custom image is a regional resource, making it available elsewhere requires an explicit copy to the target region, or an export-to-Object-Storage and import cycle, which produces a separate image resource in the destination region.
C. Detach the source instance's boot volume and attach it to a new instance in the second region, then capture the image there.
Ignores the scope of storage resources. Boot and block volumes live in a specific availability domain and cannot be attached to an instance in another availability domain, let alone another region.
D. Move the image into a compartment that the disaster-recovery region uses, since compartment membership determines which region a resource is served from.
Confuses compartments with regions. Compartments are global logical containers for access control and organization; moving a resource between them changes governance, not the region the resource physically resides in.
Explanation
A custom image is a region-scoped resource: it captures the boot volume contents of an instance — operating system, installed software, and configuration — within the region where it was created. Getting that same golden image into another region therefore requires an explicit region copy, or an export to Object Storage followed by an import that creates a new image resource in the destination. Assuming automatic global availability, trying to move the underlying boot volume (which is bound to a single availability domain), or reassigning the image to a different compartment all misread how image and storage scoping works.