Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
Ryan_Parman
4 years agoDedicated Contributor
Apple Watch stalls-out when a plethora of authentication requests come through
As a software engineer, I regularly use iTerm with multiple tabs, and multiple split-screen sessions per tab. So after I reboot my computer and re-open iTerm, I suddenly get hit with 10–40 1Password ...
floris_1P
1Password Team
4 years agoAh, thanks for clarifying that. Looking at your comment, I'd recommend to move the op calls that require authentication out of your shell profile. The CLI has an even stricter authorization model than SSH does, and wasn't really built to use in global shell profiles.
A better approach I'd suggest looking into is to use op run. Instead of loading every secret into every shell, you'd load your secrets only when they're needed. This works nicely with aliases, e.g. alias terraform='op run -- terraform'. And if you then run terraform, that's the moment you'll get prompted.