1

gcloud auth activate-service-account在脚本中使用来激活服务帐户。它输出

Activated service account credentials for: [XXX@YYY.iam.gserviceaccount.com]

有没有我可以用来使命令不输出任何东西的标志?--quiet似乎没有做我想要的。

4

1 回答 1

4

看起来你需要使用--no-user-output-enabled标志。

gcloud --no-user-output-enabled auth activate-service-account --key-file=[service-account.json]

官方文档在这里

--user-output-enabled

将用户预期的输出打印到控制台。覆盖此命令调用的默认 core/user_output_enabled 属性值。使用 --no-user-output-enabled 禁用。

于 2018-05-04T14:56:33.220 回答