Workspace: {{ $this->workspace->name }}
Managed tenant onboarding
This wizard will guide you through identifying a managed tenant and verifying access.
@if ($this->managedTenant)
Identified tenant
Name
{{ $this->managedTenant->name }}
Tenant ID
{{ $this->managedTenant->tenant_id }}
@endif @php $verificationSucceeded = $this->verificationSucceeded(); $hasTenant = (bool) $this->managedTenant; $hasConnection = $hasTenant && is_int($this->selectedProviderConnectionId) && $this->selectedProviderConnectionId > 0; @endphp
Step 1 — Identify managed tenant
Provide tenant ID + display name to start or resume the flow.
{{ $hasTenant ? 'Done' : 'Pending' }}
{{ $hasTenant ? 'Change tenant' : 'Identify tenant' }}
Step 2 — Provider connection
Create or pick the connection used to verify access.
{{ $hasConnection ? 'Selected' : ($hasTenant ? 'Pending' : 'Locked') }}
@if ($hasTenant)
Selected connection ID
{{ $this->selectedProviderConnectionId ?? '—' }}
Create connection Select connection
@endif
Step 3 — Verify access
Runs a verification operation and records the result.
{{ $verificationSucceeded ? 'Succeeded' : ($hasConnection ? 'Pending' : 'Locked') }}
Run verification
Step 4 — Bootstrap (optional)
Start inventory/compliance sync after verification.
{{ $verificationSucceeded ? 'Available' : 'Locked' }}
Start bootstrap
Step 5 — Complete onboarding
Marks the tenant as active after successful verification.
{{ $verificationSucceeded ? 'Ready' : 'Locked' }}
Complete onboarding