Severity
Not blocking. Workaround available.
Version
Introduced in 2026.2.1471
Latest Version
I could reproduce the problem in the latest build
What happened?
When using the "Save and Test" button when creating an account in the Platform Hub, an error is displayed:
Resource is not found or it doesn't exist in the current space context.
Please contact your administrator for more information.
Reproduction
- Create a new account, or modify an existing account, such as an AWS or Azure account, from the Platform Hub.
- Use the "Save and Test" button to save the changes, and test the account.
- The error will be displayed.
Error and Stacktrace
More Information
No response
Workaround
Platform Hub accounts can be tested by creating a new Task via the API:
OCTOPUS_URL='https://example.octopus.app'
OCTOPUS_API_KEY='API-XXXXXXXXXXXXXXXX'
ACCOUNT_ID='Accounts-1'
curl -X POST "$OCTOPUS_URL/api/tasks" \
-H 'Content-Type: application/json' \
-H "X-Octopus-ApiKey: $OCTOPUS_API_KEY" \
-d "{
\"Name\": \"TestPlatformHubAccount\",
\"Description\": \"Test platform hub account\",
\"Arguments\": {
\"AccountId\": \"$ACCOUNT_ID\"
}
}"
Severity
Not blocking. Workaround available.
Version
Introduced in 2026.2.1471
Latest Version
I could reproduce the problem in the latest build
What happened?
When using the "Save and Test" button when creating an account in the Platform Hub, an error is displayed:
Reproduction
Error and Stacktrace
More Information
No response
Workaround
Platform Hub accounts can be tested by creating a new Task via the API: