【发布时间】:2021-12-07 23:32:55
【问题描述】:
我正在尝试使用 terraform 检索已部署的清单和元数据信息 “helm_release”资源
Metadata values are coming out nicely however its failing in getting the manifest
Sample code:
`output "show_release_md" {
value=helm_release.testdeploy.metadata
}` -- This works
output "show_release_manifest" { value=helm_release.testdeploy.manifest } - 清单失败
Unsupported attribute. This object has no argument,nested block or exported attributes named
"manifest"
Any ideas?
【问题讨论】: