如何停止 AWS CLI 评估/跟踪 URL 并改为使用响应?

问题描述 投票:0回答:1

使用

aws ssm put-parameter
时,其后面带有 URL 值,并放置来自 API 的响应。

我想要我提供的 HTTP 端点的确切值,例如

https://supersecure.com

不是来自端点的响应,例如

<html>xyz</html>"

aws ssm put-parameter --name /example --value https://endpointthatreturnsaresponsee --type String

如何停止 AWS CLI 跟踪和捕获 URL 的响应?

amazon-web-services aws-cli
1个回答
4
投票

cli_follow_urlparam
设置为
false
:

aws configure set cli_follow_urlparam false
© www.soinside.com 2019 - 2024. All rights reserved.