File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -16,4 +16,14 @@ data "terraform_remote_state" "akuity_platform" {
1616 region = " us-west-2"
1717 key = " akuity-se-demo-iac/terraform.tfstate"
1818 }
19+ }
20+
21+ # debug
22+ output "argo_cd_url" {
23+ value = data. terraform_remote_state . akuity_platform . outputs . argo_server_url
24+ }
25+
26+ output "argo_cd_password" {
27+ value = data. terraform_remote_state . akuity_platform . outputs . argo_admin_password
28+ sensitive = false
1929}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ provider "argocd" {
1717 # this depends on AKP creation
1818 server_addr = data. terraform_remote_state . akuity_platform . outputs . argo_server_url
1919 username = " admin"
20- password = data. terraform_remote_state . akuity_platform . outputs . argo_admin_password
20+ password = " ${ data . terraform_remote_state . akuity_platform . outputs . argo_admin_password } "
2121}
2222
2323provider "helm" {
You can’t perform that action at this time.
0 commit comments