aws_iam.proto 1.1 KB

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