Aoife Finch

Results 13 comments of Aoife Finch

I found a workaround here: https://stackoverflow.com/questions/65608888/ansible-module-not-found-when-using-collection In `meta/runtime.yml` inside my collection, adding the following fixes the error: ``` --- plugin_routing: modules: hashivault_secret: redirect: ansible.legacy.hashivault_secret ```

It appears I'm having the same problem with JDK8 in an alpine container. [Here's a project to reproduce the problem](https://github.com/a01fe/toolchain). Running `test.sh` in the project produces this output: ``` $...

Thanks for your comments! After reading through the linked issues it appears that separate Groovy and Java language servers would be the cleanest way to go. The downside is that...

Yes, it appears that `api-version` is not supported in Azure Stack Hub. ``` azureuser@k8s-master-19661870-0:~$ curl -s -H "Metadata: true" "http://169.254.169.254/metadata/versions" | jq . { "apiVersions": [ "2017-03-01", "2017-04-02", "2017-08-01", "2017-10-01",...

If it helps, I'm using poetry to manage dependencies. I've done `poetry add` on the dependencies listed in `requirements-azure.txt`. I've tried both azure.azcollection 1.15 and the `dev` branch with the...

@Fred-sun Oops, forgot to include this: ``` finchr@EAS-finchrMB aks (master) [colima]: az group list -o table Name Location Status ---------------------- ------------- --------- eas-aks-scratch azurestackhub Succeeded eas-aksengine azurestackhub Succeeded eas-ash-infrastructure azurestackhub...

I'm using `az login`. As far as I know, there have been no changes to my account, and I can access resources via az cli commands just fine.

No. I've put this aside working on other projects, but I need to get back to this. I tried updating to latest azure.azcollection with the same results.

@Fred-sun our AD team has created an sp, added `~/.azure/credentials` that looks like this: ``` [default] subscription_id=xxxxxxxxxxxxx client_id=xxxxxxxxxxxxx cloud_environment=https://management.azurestackhub.wwu.edu secret=xxxxxxx tenant=xxxxxxxxxxx api_profile=2020-09-01-hybrid ``` This playbook: ``` - name: Test azure...

In my case, the issue seems to be networking/vpn related. I've been testing on Macs with `colima`, `docker`, and `docker-buildx-plugin` installed via MacPorts. `docker push` via docker CLI or buildkit...