MrLuje
MrLuje
AFAIK, `login --core` cannot be used by 3rd-parties for now, since it simulates a local ArgoCD as a backend (and is not available in argo-cd package) I see that you...
Yes, with https://registry.terraform.io/providers/oboukili/argocd/latest/docs#use_local_config ```hcl provider "argocd" { server_addr = "argocd.local:443" use_local_config = true context = "argocd.prod"
This is the behavior `argocd_application` is already using internally Example if we make the following change to an existing resource : ```diff parameter { name = "image.tag" - value =...
If I'm not mistaken, it is already implemented as `argocd_repository_credentials` See https://registry.terraform.io/providers/oboukili/argocd/latest/docs/resources/repository_credentials for an example
This issue was fixed in https://github.com/oboukili/terraform-provider-argocd/pull/163 which hasn't been release yet
Slash in parameters are already working but your issue is about dots, not the slash. It is a bit tricky to get it right and should use the same syntax...
`data.kubernetes_secret.argo-cd-password.data` is a [map](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/data-sources/secret#data) The correct usage is something like : ```diff provider "argocd" { server_addr = "argo.${var.domain}:443" username = "admin" - password = data.kubernetes_secret.argo-cd-password.data + password = data.kubernetes_secret.argo-cd-password.data.password }...
@kufii I agree that the flow from quick actions works as intended, as it open the tab and let you select the code afterward. But as stated by @LERUfic, by...
Ah, I didn't see there was a pending PR Thanks :)
My bad, they are in the `Note: Objects have changed outside of Terraform` section, so no changes that require an apply but would still be better if the state is...