File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
argocd/iac/terraform/examples/eks/argocd-ingress Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ locals {
113
113
aws_vpc_id = module.vpc.vpc_id
114
114
},
115
115
{
116
- argocd_hosts = " [ ${ local . argocd_host } ] "
116
+ argocd_domain = local.argocd_host
117
117
external_dns_domain_filters = " [${ local . domain_name } ]"
118
118
},
119
119
{
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ output "access_argocd" {
26
26
value = <<- EOT
27
27
export KUBECONFIG="/tmp/${ module . eks . cluster_name } "
28
28
aws eks --region ${ local . region } update-kubeconfig --name ${ module . eks . cluster_name }
29
- echo "ArgoCD URL: https://$(kubectl get ing -n argocd argo-cd-argocd-server -o jsonpath='{.spec.tls [0].hosts[0] }')"
29
+ echo "ArgoCD URL: https://$(kubectl get ing -n argocd argo-cd-argocd-server -o jsonpath='{.spec.rules [0].host }')"
30
30
echo "ArgoCD Username: admin"
31
31
echo "ArgoCD Password: $(kubectl get secrets argocd-initial-admin-secret -n argocd --template="{{index .data.password | base64decode}}")"
32
32
EOT
You can’t perform that action at this time.
0 commit comments