mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 23:57:01 +02:00
* Migrate protobuf generation to Buf Buf simplifies the generation story and allows us to lean into other features in the Buf ecosystem, such as dependency management, linting, breaking change detection, formatting and remote plugins. * Format all protobuf files with buf Also add a CI job to ensure formatting remains consistent * Add CI job to warn on proto generate diffs Some files were not regenerated with the latest version of the protobuf binary. This CI job will ensure we are always detect if the protobuf files need regenerating. * Add CI job for linting protobuf files
20 lines
508 B
Protocol Buffer
20 lines
508 B
Protocol Buffer
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
syntax = "proto3";
|
|
|
|
package logical;
|
|
|
|
option go_package = "github.com/hashicorp/vault/sdk/logical";
|
|
|
|
message PluginEnvironment {
|
|
// VaultVersion is the version of the Vault server
|
|
string vault_version = 1;
|
|
|
|
// VaultVersionPrerelease is the prerelease information of the Vault server
|
|
string vault_version_prerelease = 2;
|
|
|
|
// VaultVersionMetadata is the version metadata of the Vault server
|
|
string vault_version_metadata = 3;
|
|
}
|