aws_iam.proto 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. syntax = "proto3";
  2. package envoy.config.grpc_credential.v3;
  3. import "udpa/annotations/status.proto";
  4. import "udpa/annotations/versioning.proto";
  5. import "validate/validate.proto";
  6. option java_package = "io.envoyproxy.envoy.config.grpc_credential.v3";
  7. option java_outer_classname = "AwsIamProto";
  8. option java_multiple_files = true;
  9. option go_package = "github.com/envoyproxy/go-control-plane/envoy/config/grpc_credential/v3;grpc_credentialv3";
  10. option (udpa.annotations.file_status).package_version_status = ACTIVE;
  11. // [#protodoc-title: Grpc Credentials AWS IAM]
  12. // Configuration for AWS IAM Grpc Credentials Plugin
  13. // [#extension: envoy.grpc_credentials.aws_iam]
  14. message AwsIamConfig {
  15. option (udpa.annotations.versioning).previous_message_type =
  16. "envoy.config.grpc_credential.v2alpha.AwsIamConfig";
  17. // The `service namespace
  18. // <https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces>`_
  19. // of the Grpc endpoint.
  20. //
  21. // Example: appmesh
  22. string service_name = 1 [(validate.rules).string = {min_len: 1}];
  23. // The `region <https://docs.aws.amazon.com/general/latest/gr/rande.html>`_ hosting the Grpc
  24. // endpoint. If unspecified, the extension will use the value in the ``AWS_REGION`` environment
  25. // variable.
  26. //
  27. // Example: us-west-2
  28. string region = 2;
  29. }