trying to define a VPN connection at AWS, using the ec2_customer_gateway module, got an error that bgp_arn parameter is missing. after adding that parameter to the yml file, it now complaining that bgp_arn is an illegal parameter
uyaffe@:~/Documents/Aws/Ansible/ansible$ ansible-playbook -i hosts site.yml -vvv
....
fatal: [localhost -> localhost]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"bgp_asn": 65000,
"ip_address": "1.1.1.1",
"name": "KKK",
"state": "present",
"validate_certs": true
},
"module_name": "ec2_customer_gateway"
},
"msg": "state is present but the following are missing: bgp_arn"
}
to retry, use: --limit @/Users/uyaffe/Documents/Aws/Ansible/ansible/site.retry
PLAY RECAP *****
localhost : ok=5 changed=5 unreachable=0 failed=1
trying to define a VPN connection at AWS, using the ec2_customer_gateway module, got an error that bgp_arn parameter is missing. after adding that parameter to the yml file, it now complaining that bgp_arn is an illegal parameter
uyaffe@:~/Documents/Aws/Ansible/ansible$ ansible-playbook -i hosts site.yml -vvv .... fatal: [localhost -> localhost]: FAILED! => { "changed": false, "failed": true, "invocation": { "module_args": { "bgp_asn": 65000, "ip_address": "1.1.1.1", "name": "KKK", "state": "present", "validate_certs": true }, "module_name": "ec2_customer_gateway" }, "msg": "state is present but the following are missing: bgp_arn" } to retry, use: --limit @/Users/uyaffe/Documents/Aws/Ansible/ansible/site.retry
PLAY RECAP ***** localhost : ok=5 changed=5 unreachable=0 failed=1
uyaffe@:~/Documents/Aws/Ansible/ansible$ ansible-playbook -i hosts site.yml -vvv .... fatal: [localhost -> localhost]: FAILED! => { "changed": false, "failed": true, "invocation": { "module_args": { "bgp_arn": 65000, "ip_address": "1.1.1.1", "name": "KKK" }, "module_name": "ec2_customer_gateway" }, "msg": "unsupported parameter for module: bgp_arn" } to retry, use: --limit @/Users/uyaffe/Documents/Aws/Ansible/ansible/site.retry
PLAY RECAP ***** localhost : ok=5 changed=5 unreachable=0 failed=1