AJ Cruz

Results 9 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(...

@mikewiebe Here's what I got: `{"changed": false, "msg": "Merged._verify_payload: Playbook configuration for fabric TEST-EXT contains an invalid FABRIC_TYPE (External). Valid values for FABRIC_TYPE: ['IPFM', 'ISN', 'LAN_CLASSIC', 'VXLAN_EVPN', 'VXLAN_EVPN_MSD']. Bad configuration:...

Looking closer at the error message it looks like it's expecting a string, not a dictionary. Which makes sense (list / elements=string). so I changed my playbook to this: ```yaml...