mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
12 lines
280 B
HCL
12 lines
280 B
HCL
output "tooljet_private_key" {
|
|
value = tls_private_key.tooljet_key.private_key_pem
|
|
sensitive = true
|
|
}
|
|
# Output instance details
|
|
output "instance_ip" {
|
|
value = aws_instance.tooljet_instance.public_ip
|
|
}
|
|
|
|
output "instance_id" {
|
|
value = aws_instance.tooljet_instance.id
|
|
}
|