dumpnet-argo/terraform/outputs.tf

8 lines
239 B
Terraform
Raw Normal View History

output "public_ip" {
value = aws_eip.controlplane.public_ip
}
output "argocd_password_secret" {
2026-08-18 10:00:53 -04:00
value = "aws secretsmanager get-secret-value --secret-id ${var.cluster_name} --query SecretString --output text | python3 -m json.tool"
}