1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 08:08:02 +00:00

Add Aliasing An Ansible Host as a devops til.

This commit is contained in:
jbranchaud
2016-01-16 16:41:14 -06:00
parent 992b6e8b3f
commit eb9ff96478
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Aliasing An Ansible Host
When specifying the hosts that Ansible can interact with in the
`/etc/ansible/hosts` file, you can put just the IP address of the host
server, like so:
```yml
192.168.1.50
```
IP addresses are not particularly meaningful for a person to look at though.
Giving it a name serves as better documentation and makes it easier to see
what host servers are in play during a task.
Ansible makes it easy to alias host servers. For example, we can name our
host `staging` like so:
```yml
staging ansible_host=192.168.1.50
```
[source](http://docs.ansible.com/ansible/intro_inventory.html)