ansible / ansible-modules-extras

Ansible extra modules - these modules ship with ansible
947 stars 1.47k forks source link

customer GW module #3699

Closed uyaffe closed 7 years ago

uyaffe commented 7 years ago

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

ansibot commented 7 years ago

This repository has been locked. All new issues and pull requests should be filed in https://github.com/ansible/ansible

Please read through the repomerge page in the dev guide.