THE PROBLEM:
I’ve just realised why sometimes my playbook fills the template with false data
This happens, when the instance is in my VPC subnet (with internet gateway), while in configuration there is NAT route table on the system level, then reguest to the internet goes through NAT instance and the AWS response is covered.
Then the NAT_instance facts are returned, NOT the current_instance facts about.
THE DEBUGGING:
If You look into the code, the ec2_facts fetch a bunch of requests to
in Example:
curl http://169.254.169.254/latest/meta-data/local-ipv4
172.16.0.200
while real data is
eth0: ***
inet 172.16.0.110/24 brd 172.16.0.255 scope global eth0
THE INSTANCE CONFIGURATION:
$ ip r
default via 172.16.0.200 dev eth0
172.16.0.0/24 dev eth0 proto kernel scope link src 172.16.0.110
172.16.0.0/16 via 172.16.0.1 dev eth0
$ ip a
eth0: ***
inet 172.16.0.110/24 brd 172.16.0.255 scope global eth0
If You keep remote files, You can check it Yourself
export ANSIBLE_KEEP_REMOTE_FILES=1
and then
python /home/ubuntu/.ansible/tmp/ansible-tmp-1436872330.49-72199016469620/ec2_facts
will return as one of the facts:
“ansible_ec2_local_ipv4”: “172.16.0.200”,
(or run a curl)
THE CURRENT WORKAROUND:
-
do NOT use (in roles nor tasks)
-
- action: ec2_facts
-
DRAWBACKS:
-
You will not have some variables available (ansible_ec2_* will be unavailable)
-
You will have only ec2_* facts from you LOCAL inventory cache (ec2.py if I’m correct now)
-
If You add in playbook (“gather_facts: True”) then You can also use ansible_* facts gathered by setup.py module
-
so instead of ansible_ec2_local_ipv4 You can use **ansible_eth0['ipv4][‘address’]**1. BUT this can bring some problems when You have a role, that expects some vatiable (example: ansible_hostname), but in the playbook You have disabled system fact gathering (“gather_facts: False”) - You will have to be carefull
-
OR You would like to access some AWS variable, independent form Your LOCAL cache1. configure you VPC routing tables so it will point to NAT-instance-interface, rather than IP address
-
0.0.0.0/0 eni-xxx / i-xxx1. instead of:
-
0.0.0.0/0 igw-zzzzz + system routing tables1. Then You do not have to override the routing table on the system level
-
You rely on AWS Router
-
DRAWBACKS
-
You will have to change the routing table in the VPC, pointing to other phisical interface, when Your NAT instance will shut down
-
vs1. If kept with system routing table, You will lunch new NAT-instance with “old IP address” attached
QUESTIONS / CONCLUSION: -
Be aware about ec2_facts limitation
-
If possible - rely on Amazon Routing Table
-
How You prevent SPOF in Your VPC subnets?
-
What is Your best-practise to configure VPC subnet (private and public), so they have internet outside access (for github, apt), and are still safe without SPOF that is NAT-instance?