Last-mile 1Z0-1084-25 review: OCI auth patterns (API keys, instance/resource principals), API/SDK/CLI usage, Functions and event-driven design, and operational safety rules.
Use this for last‑mile review. Pair it with the Syllabus.
| You’re building… | Prefer | Why |
|---|---|---|
| Local dev tooling | User API signing key | simple dev workflow |
| Code running on OCI compute | Instance principal | avoids storing keys |
| Code running inside OCI service | Resource principal | least key management |
Exam cue: if the prompt says “avoid long-lived credentials”, pick instance/resource principals.
1# list compartments in a tenancy
2oci iam compartment list --compartment-id <tenancy-ocid>
3
4# list buckets in a compartment/namespace
5oci os bucket list --compartment-id <compartment-ocid> --namespace <ns>
flowchart LR
API["API Gateway"] --> FN["Functions"]
FN --> OBJ["Object Storage"]
OBJ --> EVT["Events"]
EVT --> NOTIF["Notifications"]
NOTIF --> SUB["Subscribers (email/webhook/...)"]
Rule: events should be idempotent; assume retries and “at least once” delivery.