-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Violet Hynes <[email protected]>
- Loading branch information
1 parent
a43e9ce
commit c109ac5
Showing
4 changed files
with
92 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
|
||
package pluginconsts | ||
|
||
// These consts live outside the plugin registry files to prevent import cycles. | ||
const ( | ||
AuthTypeAliCloud = "alicloud" | ||
AuthTypeAppId = "app-id" | ||
AuthTypeAWS = "aws" | ||
AuthTypeAzure = "azure" | ||
AuthTypeCF = "cf" | ||
AuthTypeGCP = "gcp" | ||
AuthTypeGitHub = "github" | ||
AuthTypeKerberos = "kerberos" | ||
AuthTypeKubernetes = "kubernetes" | ||
AuthTypeLDAP = "ldap" | ||
AuthTypeOCI = "oci" | ||
AuthTypeOkta = "okta" | ||
AuthTypePCF = "pcf" | ||
AuthTypeRadius = "radius" | ||
AuthTypeToken = "token" | ||
AuthTypeCert = "cert" | ||
AuthTypeOIDC = "oidc" | ||
AuthTypeUserpass = "userpass" | ||
AuthTypeSAML = "saml" | ||
AuthTypeApprole = "approle" | ||
AuthTypeJWT = "jwt" | ||
) |
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