aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormolotkov-and <molotkov-and@ydb.tech>2023-02-14 14:08:31 +0300
committermolotkov-and <molotkov-and@ydb.tech>2023-02-14 14:08:31 +0300
commit5ee77aff780ab0422989004ab7fa55f638968908 (patch)
treec2caaff53d39924a9cff85841cc234a5c8b6345e
parenta01a146b112ce014853d21b4a11daa88a877c892 (diff)
downloadydb-5ee77aff780ab0422989004ab7fa55f638968908.tar.gz
Fix access to Staff api with TVM token
-rw-r--r--ydb/core/protos/auth.proto12
1 files changed, 6 insertions, 6 deletions
diff --git a/ydb/core/protos/auth.proto b/ydb/core/protos/auth.proto
index ff8c984ee6..3f69a559f4 100644
--- a/ydb/core/protos/auth.proto
+++ b/ydb/core/protos/auth.proto
@@ -59,13 +59,13 @@ message TTVMConfig {
}
message TStaffApiTvmSettings {
- optional string Host = 1 [default = "https://tvm-api.yandex.net"];
- optional uint32 Port = 2 [default = 443];
- optional uint32 SelfTvmId = 3 [default = 2002716];
- optional string DiskCacheDir = 4 [default = "./tvm_api_client_cache"];
- optional uint32 StaffAppId = 5 [default = 2001974];
+ optional string Host = 1;
+ optional uint32 Port = 2;
+ optional uint32 SelfTvmId = 3;
+ optional string DiskCacheDir = 4;
+ optional uint32 StaffAppId = 5;
oneof Secret {
- string SecretEnvironmentVariable = 6 [default = "TVM_SECRET"];
+ string SecretEnvironmentVariable = 6;
string PlainTextSecret = 7;
}
}