我正在使用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是包含输出的文件