Feat: Support for Machine Identities auth

This commit is contained in:
Daniel Hougaard
2024-03-26 23:36:00 +01:00
parent 3d391b4e2d
commit 3981d61853
2 changed files with 23 additions and 15 deletions

View File

@@ -97,10 +97,11 @@ type GetAllSecretsParameters struct {
}
type GetAllFoldersParameters struct {
WorkspaceId string
Environment string
FoldersPath string
InfisicalToken string
WorkspaceId string
Environment string
FoldersPath string
InfisicalToken string
UniversalAuthAccessToken string
}
type CreateFolderParameters struct {
@@ -123,3 +124,8 @@ type ExpandSecretsAuthentication struct {
InfisicalToken string
UniversalAuthAccessToken string
}
type MachineIdentityCredentials struct {
ClientId string
ClientSecret string
}