如何解决terraform将输出保存到文件
我正在使用terraform证书。寻找有关如何使用terrafrom将pem和cert值转储到磁盘文件的信息。这是输出变量。我想将它们转储到变量。任何参考代码段??
output "private_key" {
description = "The venafi private key"
value = venafi_certificate.this.private_key_pem
}
output "certificate_body" {
description = "The acm certificate body"
value = venafi_certificate.this.certificate
}
output "certificate_chain" {
description = "The acm certificate chain"
value = venafi_certificate.this.chain
}
'''
解决方法
一种方法是使用local_file。例如:
resource "local_file" "private_key" {
content = venafi_certificate.this.private_key_pem
filename = "private_key.pem"
}
,
这是一个老问题,但如果有人遇到同样的问题,让我把我的答案放在这里。 您可以将所有输出发送到这样的文件
terraform output > file.txt
其中 file.txt 是包含输出的文件
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。