AJ Cruz

Results 7 comments of AJ Cruz

This has happened to me twice now. First time I disabled, reloaded, and enabled the HashiCorp Terraform extension and that fixed it. 2nd time that wouldn't fix it, I downgraded,...

Not sure if I should add it here or put it in it's own issue, but I'm also seeing an idempotency issue with ios_config. I have a simple task in...

I noticed if instead of setting prefer to no/false you leave it out, it works. A workaround using jinja templating: ``` - name: Generate NTP Payload ansible.builtin.set_fact: nxos_ntp: "{{ lookup('template',...

If I do a file_transfer with netmiko directly it works: ```python from netmiko import ConnectHandler, file_transfer device = { "device_type": "cisco_ios", "host": "192.168.254.40", "username": "admin", "password": "admin", "fast_cli": True, #...

I tried to manually replicate some of the logic from netmiko_file_transfer so I could compare the task object to make sure the inputs were the same. I modified the net_connect...

Well, I'm not sure what happened, I re-factored my code and in so doing re-wrote the file transfer from scratch slightly modified, and it's working now: ```python image_transfer = self.nornir_client.run(...