无法为 route53 健康检查条目设置名称
unable to set name for route53 healthcheck entry
这就是我设置条目的方式
cat << EOF > /tmp/route53-healthcheck.json
{
"IPAddress": "10.10.10.10",
"Port": 80,
"Type": "HTTP",
"ResourcePath": "/somefile.txt"
}
EOF
aws route53 create-health-check \
--caller-reference $(date +'%Y%m%dT%H%M%d') \
--health-check-config file:///tmp/route53-healthcheck.json > /tmp/route53-healthcheck.log
当我看到 route53
条目时,它缺少名称(第一个条目是手动条目,第二个条目来自上面的代码片段。我指的是红色污迹。)
docs 中列出的所有选项均不相关。
{
"IPAddress": "string",
"Port": integer,
"Type": "HTTP"|"HTTPS"|"HTTP_STR_MATCH"|"HTTPS_STR_MATCH"|"TCP"|"CALCULATED",
"ResourcePath": "string",
"FullyQualifiedDomainName": "string",
"SearchString": "string",
"RequestInterval": integer,
"FailureThreshold": integer,
"MeasureLatency": true|false,
"Inverted": true|false,
"HealthThreshold": integer,
"ChildHealthChecks": ["string", ...]
}
有没有其他方法可以用另一种方式设置它的名称?
解决方案
aws route53 change-tags-for-resource --resource-type healthcheck --resource-id 41633bb1-4adc-4357-983f-767191ff3248 --add-tags Key=Name,Value="new-name"
我犯的一些错误:
- 我的 aws 版本很旧。在 ubuntu 上,我必须
apt-get remove awscli
然后使用pip install awscli
从 pip 安装最新版本。然后可以在~/.local/bin/aws
中找到可执行文件
- 当我更改名称时,我不得不强制重新加载网页,而不是仅仅使用 aws 图标刷新它(想想
Ctrl+Shift+R
)。
您需要使用 change-tags-for-resource CLI 选项在资源上设置标签[1]。
示例:
aws route53 change-tags-for-resource --resource-type healthcheck --resource-id <healthcheck guid> --add-tags Key=Name;Value=Value