Why connection management matters
Connections are not a one-time setup task. Over time, accounts change, permissions get updated, tokens expire, and workflows start depending on the same app access in multiple places. Good connection management helps you avoid unexpected workflow failures later.Reuse before you duplicate
In most cases, you should reuse an existing connection instead of creating a new one. That makes it easier to:- keep app access consistent
- reduce clutter in the Connections list
- update fewer records when credentials change
Keep names clear
As your workspace grows, names matter more. Use connection names that make it obvious:- which app the connection belongs to
- which account it uses
- whether it is intended for production, testing, or a specific workflow group
Understand default connections
Default connections can speed up setup, but they also affect how quickly someone can attach the wrong account to a workflow. Review default connections carefully when:- the same app is used by multiple teams
- you have both personal and shared accounts
- you maintain separate test and live environments
When to update a connection
You may need to update or replace a connection when:- the connected account changes
- permissions need to be expanded
- access tokens become invalid
- the workflow should now use a different app account
Rotation and replacement
Sometimes app credentials or tokens need to be refreshed or replaced. A safe pattern is:- identify which workflows use the connection
- update or recreate the connection as needed
- run targeted tests on the affected workflows
- verify a real run after the change
Periodic cleanup
It helps to review connections from time to time and ask:- is this still in use
- is this the right default
- is this clearly named
- is this account still the one we want workflows to use
What good connection management looks like
A healthy setup usually has:- a small number of well-named reusable connections
- clear separation between test and production accounts when needed
- deliberate use of defaults
- regular retesting after credential changes