7 lines
239 B
HCL
7 lines
239 B
HCL
output "public_ip" {
|
|
value = aws_eip.controlplane.public_ip
|
|
}
|
|
|
|
output "argocd_password_secret" {
|
|
value = "aws secretsmanager get-secret-value --secret-id ${var.cluster_name} --query SecretString --output text | python3 -m json.tool"
|
|
}
|