-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vault: Detailed errors for dynamic users (#113)
Vault: Detailed errors for dynamic users Detailed errors for path_roles.go. Introduced a new vars/error.go list of custom errors. Refers to: #111 Reviewed-by: Anton Sidelnikov Reviewed-by: Artem Lifshits Reviewed-by: Aloento
- Loading branch information
1 parent
2845f80
commit 7a0f85b
Showing
3 changed files
with
39 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package vars | ||
|
||
var ( | ||
ErrCloudConf = "error getting configuration from cloud" | ||
ErrRoleGetName = "error getting the role by name" | ||
ErrCloud = "cloud is required when creating a role" | ||
) |