mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +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-legacy-database-plugin", | ||||||
| 				"mysql-rds-database-plugin", | 				"mysql-rds-database-plugin", | ||||||
| 				"nomad", | 				"nomad", | ||||||
|  | 				"oci", | ||||||
| 				"oidc", | 				"oidc", | ||||||
| 				"okta", | 				"okta", | ||||||
| 				"pcf", // Deprecated. | 				"pcf", // Deprecated. | ||||||
|   | |||||||
| @@ -12,6 +12,7 @@ import ( | |||||||
| 	credGcp "github.com/hashicorp/vault-plugin-auth-gcp/plugin" | 	credGcp "github.com/hashicorp/vault-plugin-auth-gcp/plugin" | ||||||
| 	credJWT "github.com/hashicorp/vault-plugin-auth-jwt" | 	credJWT "github.com/hashicorp/vault-plugin-auth-jwt" | ||||||
| 	credKube "github.com/hashicorp/vault-plugin-auth-kubernetes" | 	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" | 	credAppId "github.com/hashicorp/vault/builtin/credential/app-id" | ||||||
| 	credAppRole "github.com/hashicorp/vault/builtin/credential/approle" | 	credAppRole "github.com/hashicorp/vault/builtin/credential/approle" | ||||||
| 	credAws "github.com/hashicorp/vault/builtin/credential/aws" | 	credAws "github.com/hashicorp/vault/builtin/credential/aws" | ||||||
| @@ -78,6 +79,7 @@ func newRegistry() *registry { | |||||||
| 			"jwt":        credJWT.Factory, | 			"jwt":        credJWT.Factory, | ||||||
| 			"kubernetes": credKube.Factory, | 			"kubernetes": credKube.Factory, | ||||||
| 			"ldap":       credLdap.Factory, | 			"ldap":       credLdap.Factory, | ||||||
|  | 			"oci":        credOCI.Factory, | ||||||
| 			"oidc":       credJWT.Factory, | 			"oidc":       credJWT.Factory, | ||||||
| 			"okta":       credOkta.Factory, | 			"okta":       credOkta.Factory, | ||||||
| 			"pcf":        credCF.Factory, // Deprecated. | 			"pcf":        credCF.Factory, // Deprecated. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jim Kalafut
					Jim Kalafut