8 lines
235 B
Terraform
8 lines
235 B
Terraform
|
|
output "public_ip" {
|
||
|
|
value = aws_eip.controlplane.public_ip
|
||
|
|
}
|
||
|
|
|
||
|
|
output "argocd_password_secret" {
|
||
|
|
value = "aws secretsmanager get-secret-value --secret-id dumpnet/cluster --query SecretString --output text | python3 -m json.tool"
|
||
|
|
}
|