mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	Add OCI auth to builtin plugin registry (#7436)
This commit is contained in:
		| @@ -356,6 +356,7 @@ func TestPredict_Plugins(t *testing.T) { | ||||
| 				"mysql-legacy-database-plugin", | ||||
| 				"mysql-rds-database-plugin", | ||||
| 				"nomad", | ||||
| 				"oci", | ||||
| 				"oidc", | ||||
| 				"okta", | ||||
| 				"pcf", // Deprecated. | ||||
|   | ||||
| @@ -12,6 +12,7 @@ import ( | ||||
| 	credGcp "github.com/hashicorp/vault-plugin-auth-gcp/plugin" | ||||
| 	credJWT "github.com/hashicorp/vault-plugin-auth-jwt" | ||||
| 	credKube "github.com/hashicorp/vault-plugin-auth-kubernetes" | ||||
| 	credOCI "github.com/hashicorp/vault-plugin-auth-oci" | ||||
| 	credAppId "github.com/hashicorp/vault/builtin/credential/app-id" | ||||
| 	credAppRole "github.com/hashicorp/vault/builtin/credential/approle" | ||||
| 	credAws "github.com/hashicorp/vault/builtin/credential/aws" | ||||
| @@ -78,6 +79,7 @@ func newRegistry() *registry { | ||||
| 			"jwt":        credJWT.Factory, | ||||
| 			"kubernetes": credKube.Factory, | ||||
| 			"ldap":       credLdap.Factory, | ||||
| 			"oci":        credOCI.Factory, | ||||
| 			"oidc":       credJWT.Factory, | ||||
| 			"okta":       credOkta.Factory, | ||||
| 			"pcf":        credCF.Factory, // Deprecated. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jim Kalafut
					Jim Kalafut