Hi,
I'm trying to set a Third Party VPN Peer using cisco.meraki.organizations_appliance_vpn_third_party_vpnpeers: but getting the below error.
NoneType: None
fatal: [localhost]: FAILED! => {
"changed": false,
"msg": "Object does not exists, plugin only has update"
Sample Playbook
---
- name: Set Third Party VPN
hosts: localhost
gather_facts: false
tasks:
- name: Set Third Party VPN
cisco.meraki.organizations_appliance_vpn_third_party_vpnpeers:
state: present
organizationId: XXXX
peers:
- ikeVersion: '2'
ipsecPolicies:
childAuthAlgo:
- sha256
childCipherAlgo:
- aes256
childLifetime: 28800
childPfsGroup:
- group14
ikeAuthAlgo:
- sha256
ikeCipherAlgo:
- aes256
ikeDiffieHellmanGroup:
- group14
ikeLifetime: 28800
ikePrfAlgo:
- prfsha256
name: TEST
networkTags:
- all
privateSubnets:
- 192.168.1.0/24
publicIp: 123.123.123.1
secret: Sample_Password
I have raised this on GitHub already as Issue #125
Any help gratefully appreciated.
Cheers
N