везде? у вас в именах (id) стейтов тоже ip, их тоже в кавычки, целиком
{% for ip in salt['pillar.keys']('hosts:present') %}
{{sls}}-"{{ip}}"-present:
host.present:
- ip: "{{ip}}"
- names:
{% for hostname in salt['pillar.get']('hosts:present:'~ip) %}
- {{hostname}}
{% endfor %}
- clean: True
{% endfor %}
{% for ip in salt['pillar.keys']('hosts:absent') %}
{% set hostnames = salt['pillar.get']('hosts:absent:'~ip) %}
{{sls}}-"{{ip}}"-absent:
host.absent:
- ip: "{{ip}}"
- names:
{% for hostname in hostnames %}
- {{hostname}}
{% endfor %}
{% endfor %}