fix: checking for stale STS account under site replication (#16109)

This commit is contained in:
Anis Elleuch
2022-11-22 16:26:33 +01:00
committed by GitHub
parent 98ba622679
commit 04948b4d55
3 changed files with 43 additions and 8 deletions
+6
View File
@@ -71,6 +71,12 @@ var errNoSuchUser = errors.New("Specified user does not exist")
// error returned when service account is not found
var errNoSuchServiceAccount = errors.New("Specified service account does not exist")
// error returned when temporary account is not found
var errNoSuchTempAccount = errors.New("Specified temporary account does not exist")
// error returned in IAM subsystem when an account doesn't exist.
var errNoSuchAccount = errors.New("Specified account does not exist")
// error returned in IAM subsystem when groups doesn't exist.
var errNoSuchGroup = errors.New("Specified group does not exist")