1.. _intro_inventory: 2.. _inventory: 3 4*************************** 5How to build your inventory 6*************************** 7 8Ansible works against multiple managed nodes or "hosts" in your infrastructure at the same time, using a list or group of lists know as inventory. Once your inventory is defined, you use :ref:`patterns <intro_patterns>` to select the hosts or groups you want Ansible to run against. 9 10The default location for inventory is a file called ``/usr/local/etc/ansible/hosts``. You can specify a different inventory file at the command line using the ``-i <path>`` option. You can also use multiple inventory files at the same time, and/or pull inventory from dynamic or cloud sources or different formats (YAML, ini, etc), as described in :ref:`intro_dynamic_inventory`. 11Introduced in version 2.4, Ansible has :ref:`inventory_plugins` to make this flexible and customizable. 12 13.. contents:: 14 :local: 15 16.. _inventoryformat: 17 18Inventory basics: formats, hosts, and groups 19============================================ 20 21The inventory file can be in one of many formats, depending on the inventory plugins you have. 22The most common formats are INI and YAML. A basic INI ``etc/ansible/hosts`` might look like this: 23 24.. code-block:: text 25 26 mail.example.com 27 28 [webservers] 29 foo.example.com 30 bar.example.com 31 32 [dbservers] 33 one.example.com 34 two.example.com 35 three.example.com 36 37The headings in brackets are group names, which are used in classifying hosts 38and deciding what hosts you are controlling at what times and for what purpose. 39 40Here's that same basic inventory file in YAML format: 41 42.. code-block:: yaml 43 44 all: 45 hosts: 46 mail.example.com: 47 children: 48 webservers: 49 hosts: 50 foo.example.com: 51 bar.example.com: 52 dbservers: 53 hosts: 54 one.example.com: 55 two.example.com: 56 three.example.com: 57 58.. _default_groups: 59 60Default groups 61-------------- 62 63There are two default groups: ``all`` and ``ungrouped``. The ``all`` group contains every host. 64The ``ungrouped`` group contains all hosts that don't have another group aside from ``all``. 65Every host will always belong to at least 2 groups (``all`` and ``ungrouped`` or ``all`` and some other group). Though ``all`` and ``ungrouped`` are always present, they can be implicit and not appear in group listings like ``group_names``. 66 67.. _host_multiple_groups: 68 69Hosts in multiple groups 70------------------------ 71 72You can (and probably will) put each host in more than one group. For example a production webserver in a datacenter in Atlanta might be included in groups called [prod] and [atlanta] and [webservers]. You can create groups that track: 73 74* What - An application, stack or microservice. (For example, database servers, web servers, etc). 75* Where - A datacenter or region, to talk to local DNS, storage, etc. (For example, east, west). 76* When - The development stage, to avoid testing on production resources. (For example, prod, test). 77 78Extending the previous YAML inventory to include what, when, and where would look like: 79 80.. code-block:: yaml 81 82 all: 83 hosts: 84 mail.example.com: 85 children: 86 webservers: 87 hosts: 88 foo.example.com: 89 bar.example.com: 90 dbservers: 91 hosts: 92 one.example.com: 93 two.example.com: 94 three.example.com: 95 east: 96 hosts: 97 foo.example.com: 98 one.example.com: 99 two.example.com: 100 west: 101 hosts: 102 bar.example.com: 103 three.example.com: 104 prod: 105 hosts: 106 foo.example.com: 107 one.example.com: 108 two.example.com: 109 test: 110 hosts: 111 bar.example.com: 112 three.example.com: 113 114You can see that ``one.example.com`` exists in the ``dbservers``, ``east``, and ``prod`` groups. 115 116You can also use nested groups to simplify ``prod`` and ``test`` in this inventory, for the same result: 117 118.. code-block:: yaml 119 120 all: 121 hosts: 122 mail.example.com: 123 children: 124 webservers: 125 hosts: 126 foo.example.com: 127 bar.example.com: 128 dbservers: 129 hosts: 130 one.example.com: 131 two.example.com: 132 three.example.com: 133 east: 134 hosts: 135 foo.example.com: 136 one.example.com: 137 two.example.com: 138 west: 139 hosts: 140 bar.example.com: 141 three.example.com: 142 prod: 143 children: 144 east: 145 test: 146 children: 147 west: 148 149You can find more examples on how to organize your inventories and group your hosts in :ref:`inventory_setup_examples`. 150 151Adding ranges of hosts 152---------------------- 153 154If you have a lot of hosts with a similar pattern, you can add them as a range rather than listing each hostname separately: 155 156In INI: 157 158.. code-block:: text 159 160 [webservers] 161 www[01:50].example.com 162 163In YAML: 164 165.. code-block:: yaml 166 167 ... 168 webservers: 169 hosts: 170 www[01:50].example.com: 171 172For numeric patterns, leading zeros can be included or removed, as desired. Ranges are inclusive. You can also define alphabetic ranges: 173 174.. code-block:: text 175 176 [databases] 177 db-[a:f].example.com 178 179Adding variables to inventory 180============================= 181 182You can store variable values that relate to a specific host or group in inventory. To start with, you may add variables directly to the hosts and groups in your main inventory file. As you add more and more managed nodes to your Ansible inventory, however, you will likely want to store variables in separate host and group variable files. 183 184.. _host_variables: 185 186Assigning a variable to one machine: host variables 187=================================================== 188 189You can easily assign a variable to a single host, then use it later in playbooks. In INI: 190 191.. code-block:: text 192 193 [atlanta] 194 host1 http_port=80 maxRequestsPerChild=808 195 host2 http_port=303 maxRequestsPerChild=909 196 197In YAML: 198 199.. code-block:: yaml 200 201 atlanta: 202 host1: 203 http_port: 80 204 maxRequestsPerChild: 808 205 host2: 206 http_port: 303 207 maxRequestsPerChild: 909 208 209Unique values like non-standard SSH ports work well as host variables. You can add them to your Ansible inventory by adding the port number after the hostname with a colon: 210 211.. code-block:: text 212 213 badwolf.example.com:5309 214 215Connection variables also work well as host variables: 216 217.. code-block:: text 218 219 [targets] 220 221 localhost ansible_connection=local 222 other1.example.com ansible_connection=ssh ansible_user=myuser 223 other2.example.com ansible_connection=ssh ansible_user=myotheruser 224 225.. note:: If you list non-standard SSH ports in your SSH config file, the ``openssh`` connection will find and use them, but the ``paramiko`` connection will not. 226 227.. _inventory_aliases: 228 229Inventory aliases 230----------------- 231 232You can also define aliases in your inventory: 233 234In INI: 235 236.. code-block:: text 237 238 jumper ansible_port=5555 ansible_host=192.0.2.50 239 240In YAML: 241 242.. code-block:: yaml 243 244 ... 245 hosts: 246 jumper: 247 ansible_port: 5555 248 ansible_host: 192.0.2.50 249 250In the above example, running Ansible against the host alias "jumper" will connect to 192.0.2.50 on port 5555. 251This only works for hosts with static IPs, or when you are connecting through tunnels. 252 253.. note:: 254 Values passed in the INI format using the ``key=value`` syntax are interpreted differently depending on where they are declared: 255 256 * When declared inline with the host, INI values are interpreted as Python literal structures (strings, numbers, tuples, lists, dicts, booleans, None). Host lines accept multiple ``key=value`` parameters per line. Therefore they need a way to indicate that a space is part of a value rather than a separator. 257 258 * When declared in a ``:vars`` section, INI values are interpreted as strings. For example ``var=FALSE`` would create a string equal to 'FALSE'. Unlike host lines, ``:vars`` sections accept only a single entry per line, so everything after the ``=`` must be the value for the entry. 259 260 * If a variable value set in an INI inventory must be a certain type (for example, a string or a boolean value), always specify the type with a filter in your task. Do not rely on types set in INI inventories when consuming variables. 261 262 * Consider using YAML format for inventory sources to avoid confusion on the actual type of a variable. The YAML inventory plugin processes variable values consistently and correctly. 263 264Generally speaking, this is not the best way to define variables that describe your system policy. Setting variables in the main inventory file is only a shorthand. See :ref:`splitting_out_vars` for guidelines on storing variable values in individual files in the 'host_vars' directory. 265 266.. _group_variables: 267 268Assigning a variable to many machines: group variables 269====================================================== 270 271If all hosts in a group share a variable value, you can apply that variable to an entire group at once. In INI: 272 273.. code-block:: text 274 275 [atlanta] 276 host1 277 host2 278 279 [atlanta:vars] 280 ntp_server=ntp.atlanta.example.com 281 proxy=proxy.atlanta.example.com 282 283In YAML: 284 285.. code-block:: yaml 286 287 atlanta: 288 hosts: 289 host1: 290 host2: 291 vars: 292 ntp_server: ntp.atlanta.example.com 293 proxy: proxy.atlanta.example.com 294 295Group variables are a convenient way to apply variables to multiple hosts at once. Before executing, however, Ansible always flattens variables, including inventory variables, to the host level. If a host is a member of multiple groups, Ansible reads variable values from all of those groups. If you assign different values to the same variable in different groups, Ansible chooses which value to use based on internal :ref:`rules for merging <how_we_merge>`. 296 297.. _subgroups: 298 299Inheriting variable values: group variables for groups of groups 300---------------------------------------------------------------- 301 302You can make groups of groups using the ``:children`` suffix in INI or the ``children:`` entry in YAML. 303You can apply variables to these groups of groups using ``:vars`` or ``vars:``: 304 305In INI: 306 307.. code-block:: text 308 309 [atlanta] 310 host1 311 host2 312 313 [raleigh] 314 host2 315 host3 316 317 [southeast:children] 318 atlanta 319 raleigh 320 321 [southeast:vars] 322 some_server=foo.southeast.example.com 323 halon_system_timeout=30 324 self_destruct_countdown=60 325 escape_pods=2 326 327 [usa:children] 328 southeast 329 northeast 330 southwest 331 northwest 332 333In YAML: 334 335.. code-block:: yaml 336 337 all: 338 children: 339 usa: 340 children: 341 southeast: 342 children: 343 atlanta: 344 hosts: 345 host1: 346 host2: 347 raleigh: 348 hosts: 349 host2: 350 host3: 351 vars: 352 some_server: foo.southeast.example.com 353 halon_system_timeout: 30 354 self_destruct_countdown: 60 355 escape_pods: 2 356 northeast: 357 northwest: 358 southwest: 359 360If you need to store lists or hash data, or prefer to keep host and group specific variables separate from the inventory file, see :ref:`splitting_out_vars`. 361 362Child groups have a couple of properties to note: 363 364 - Any host that is member of a child group is automatically a member of the parent group. 365 - A child group's variables will have higher precedence (override) a parent group's variables. 366 - Groups can have multiple parents and children, but not circular relationships. 367 - Hosts can also be in multiple groups, but there will only be **one** instance of a host, merging the data from the multiple groups. 368 369.. _splitting_out_vars: 370 371Organizing host and group variables 372=================================== 373 374Although you can store variables in the main inventory file, storing separate host and group variables files may help you organize your variable values more easily. Host and group variable files must use YAML syntax. Valid file extensions include '.yml', '.yaml', '.json', or no file extension. 375See :ref:`yaml_syntax` if you are new to YAML. 376 377Ansible loads host and group variable files by searching paths relative to the inventory file or the playbook file. If your inventory file at ``/usr/local/etc/ansible/hosts`` contains a host named 'foosball' that belongs to two groups, 'raleigh' and 'webservers', that host will use variables in YAML files at the following locations: 378 379.. code-block:: bash 380 381 /usr/local/etc/ansible/group_vars/raleigh # can optionally end in '.yml', '.yaml', or '.json' 382 /usr/local/etc/ansible/group_vars/webservers 383 /usr/local/etc/ansible/host_vars/foosball 384 385For example, if you group hosts in your inventory by datacenter, and each datacenter uses its own NTP server and database server, you can create a file called ``/usr/local/etc/ansible/group_vars/raleigh`` to store the variables for the ``raleigh`` group: 386 387.. code-block:: yaml 388 389 --- 390 ntp_server: acme.example.org 391 database_server: storage.example.org 392 393You can also create *directories* named after your groups or hosts. Ansible will read all the files in these directories in lexicographical order. An example with the 'raleigh' group: 394 395.. code-block:: bash 396 397 /usr/local/etc/ansible/group_vars/raleigh/db_settings 398 /usr/local/etc/ansible/group_vars/raleigh/cluster_settings 399 400All hosts in the 'raleigh' group will have the variables defined in these files 401available to them. This can be very useful to keep your variables organized when a single 402file gets too big, or when you want to use :ref:`Ansible Vault<playbooks_vault>` on some group variables. 403 404You can also add ``group_vars/`` and ``host_vars/`` directories to your playbook directory. The ``ansible-playbook`` command looks for these directories in the current working directory by default. Other Ansible commands (for example, ``ansible``, ``ansible-console``, etc.) will only look for ``group_vars/`` and ``host_vars/`` in the inventory directory. If you want other commands to load group and host variables from a playbook directory, you must provide the ``--playbook-dir`` option on the command line. 405If you load inventory files from both the playbook directory and the inventory directory, variables in the playbook directory will override variables set in the inventory directory. 406 407Keeping your inventory file and variables in a git repo (or other version control) 408is an excellent way to track changes to your inventory and host variables. 409 410.. _how_we_merge: 411 412How variables are merged 413======================== 414 415By default variables are merged/flattened to the specific host before a play is run. This keeps Ansible focused on the Host and Task, so groups don't really survive outside of inventory and host matching. By default, Ansible overwrites variables including the ones defined for a group and/or host (see :ref:`DEFAULT_HASH_BEHAVIOUR<DEFAULT_HASH_BEHAVIOUR>`). The order/precedence is (from lowest to highest): 416 417- all group (because it is the 'parent' of all other groups) 418- parent group 419- child group 420- host 421 422By default Ansible merges groups at the same parent/child level alphabetically, and the last group loaded overwrites the previous groups. For example, an a_group will be merged with b_group and b_group vars that match will overwrite the ones in a_group. 423 424You can change this behavior by setting the group variable ``ansible_group_priority`` to change the merge order for groups of the same level (after the parent/child order is resolved). The larger the number, the later it will be merged, giving it higher priority. This variable defaults to ``1`` if not set. For example: 425 426.. code-block:: yaml 427 428 a_group: 429 testvar: a 430 ansible_group_priority: 10 431 b_group: 432 testvar: b 433 434In this example, if both groups have the same priority, the result would normally have been ``testvar == b``, but since we are giving the ``a_group`` a higher priority the result will be ``testvar == a``. 435 436.. note:: ``ansible_group_priority`` can only be set in the inventory source and not in group_vars/, as the variable is used in the loading of group_vars. 437 438.. _using_multiple_inventory_sources: 439 440Using multiple inventory sources 441================================ 442 443You can target multiple inventory sources (directories, dynamic inventory scripts 444or files supported by inventory plugins) at the same time by giving multiple inventory parameters from the command 445line or by configuring :envvar:`ANSIBLE_INVENTORY`. This can be useful when you want to target normally 446separate environments, like staging and production, at the same time for a specific action. 447 448Target two sources from the command line like this: 449 450.. code-block:: bash 451 452 ansible-playbook get_logs.yml -i staging -i production 453 454Keep in mind that if there are variable conflicts in the inventories, they are resolved according 455to the rules described in :ref:`how_we_merge` and :ref:`ansible_variable_precedence`. 456The merging order is controlled by the order of the inventory source parameters. 457If ``[all:vars]`` in staging inventory defines ``myvar = 1``, but production inventory defines ``myvar = 2``, 458the playbook will be run with ``myvar = 2``. The result would be reversed if the playbook was run with 459``-i production -i staging``. 460 461**Aggregating inventory sources with a directory** 462 463You can also create an inventory by combining multiple inventory sources and source types under a directory. 464This can be useful for combining static and dynamic hosts and managing them as one inventory. 465The following inventory combines an inventory plugin source, a dynamic inventory script, 466and a file with static hosts: 467 468.. code-block:: text 469 470 inventory/ 471 openstack.yml # configure inventory plugin to get hosts from Openstack cloud 472 dynamic-inventory.py # add additional hosts with dynamic inventory script 473 static-inventory # add static hosts and groups 474 group_vars/ 475 all.yml # assign variables to all hosts 476 477You can target this inventory directory simply like this: 478 479.. code-block:: bash 480 481 ansible-playbook example.yml -i inventory 482 483It can be useful to control the merging order of the inventory sources if there's variable 484conflicts or group of groups dependencies to the other inventory sources. The inventories 485are merged in alphabetical order according to the filenames so the result can 486be controlled by adding prefixes to the files: 487 488.. code-block:: text 489 490 inventory/ 491 01-openstack.yml # configure inventory plugin to get hosts from Openstack cloud 492 02-dynamic-inventory.py # add additional hosts with dynamic inventory script 493 03-static-inventory # add static hosts 494 group_vars/ 495 all.yml # assign variables to all hosts 496 497If ``01-openstack.yml`` defines ``myvar = 1`` for the group ``all``, ``02-dynamic-inventory.py`` defines ``myvar = 2``, 498and ``03-static-inventory`` defines ``myvar = 3``, the playbook will be run with ``myvar = 3``. 499 500For more details on inventory plugins and dynamic inventory scripts see :ref:`inventory_plugins` and :ref:`intro_dynamic_inventory`. 501 502.. _behavioral_parameters: 503 504Connecting to hosts: behavioral inventory parameters 505==================================================== 506 507As described above, setting the following variables control how Ansible interacts with remote hosts. 508 509Host connection: 510 511.. include:: shared_snippets/SSH_password_prompt.txt 512 513ansible_connection 514 Connection type to the host. This can be the name of any of ansible's connection plugins. SSH protocol types are ``smart``, ``ssh`` or ``paramiko``. The default is smart. Non-SSH based types are described in the next section. 515 516General for all connections: 517 518ansible_host 519 The name of the host to connect to, if different from the alias you wish to give to it. 520ansible_port 521 The connection port number, if not the default (22 for ssh) 522ansible_user 523 The user name to use when connecting to the host 524ansible_password 525 The password to use to authenticate to the host (never store this variable in plain text; always use a vault. See :ref:`best_practices_for_variables_and_vaults`) 526 527 528Specific to the SSH connection: 529 530ansible_ssh_private_key_file 531 Private key file used by ssh. Useful if using multiple keys and you don't want to use SSH agent. 532ansible_ssh_common_args 533 This setting is always appended to the default command line for :command:`sftp`, :command:`scp`, 534 and :command:`ssh`. Useful to configure a ``ProxyCommand`` for a certain host (or 535 group). 536ansible_sftp_extra_args 537 This setting is always appended to the default :command:`sftp` command line. 538ansible_scp_extra_args 539 This setting is always appended to the default :command:`scp` command line. 540ansible_ssh_extra_args 541 This setting is always appended to the default :command:`ssh` command line. 542ansible_ssh_pipelining 543 Determines whether or not to use SSH pipelining. This can override the ``pipelining`` setting in :file:`ansible.cfg`. 544ansible_ssh_executable (added in version 2.2) 545 This setting overrides the default behavior to use the system :command:`ssh`. This can override the ``ssh_executable`` setting in :file:`ansible.cfg`. 546 547 548Privilege escalation (see :ref:`Ansible Privilege Escalation<become>` for further details): 549 550ansible_become 551 Equivalent to ``ansible_sudo`` or ``ansible_su``, allows to force privilege escalation 552ansible_become_method 553 Allows to set privilege escalation method 554ansible_become_user 555 Equivalent to ``ansible_sudo_user`` or ``ansible_su_user``, allows to set the user you become through privilege escalation 556ansible_become_password 557 Equivalent to ``ansible_sudo_password`` or ``ansible_su_password``, allows you to set the privilege escalation password (never store this variable in plain text; always use a vault. See :ref:`best_practices_for_variables_and_vaults`) 558ansible_become_exe 559 Equivalent to ``ansible_sudo_exe`` or ``ansible_su_exe``, allows you to set the executable for the escalation method selected 560ansible_become_flags 561 Equivalent to ``ansible_sudo_flags`` or ``ansible_su_flags``, allows you to set the flags passed to the selected escalation method. This can be also set globally in :file:`ansible.cfg` in the ``sudo_flags`` option 562 563Remote host environment parameters: 564 565.. _ansible_shell_type: 566 567ansible_shell_type 568 The shell type of the target system. You should not use this setting unless you have set the 569 :ref:`ansible_shell_executable<ansible_shell_executable>` to a non-Bourne (sh) compatible shell. By default commands are 570 formatted using ``sh``-style syntax. Setting this to ``csh`` or ``fish`` will cause commands 571 executed on target systems to follow those shell's syntax instead. 572 573.. _ansible_python_interpreter: 574 575ansible_python_interpreter 576 The target host python path. This is useful for systems with more 577 than one Python or not located at :command:`/usr/bin/python` such as \*BSD, or where :command:`/usr/bin/python` 578 is not a 2.X series Python. We do not use the :command:`/usr/bin/env` mechanism as that requires the remote user's 579 path to be set right and also assumes the :program:`python` executable is named python, where the executable might 580 be named something like :program:`python2.6`. 581 582ansible_*_interpreter 583 Works for anything such as ruby or perl and works just like :ref:`ansible_python_interpreter<ansible_python_interpreter>`. 584 This replaces shebang of modules which will run on that host. 585 586.. versionadded:: 2.1 587 588.. _ansible_shell_executable: 589 590ansible_shell_executable 591 This sets the shell the ansible controller will use on the target machine, 592 overrides ``executable`` in :file:`ansible.cfg` which defaults to 593 :command:`/bin/sh`. You should really only change it if is not possible 594 to use :command:`/bin/sh` (i.e. :command:`/bin/sh` is not installed on the target 595 machine or cannot be run from sudo.). 596 597Examples from an Ansible-INI host file: 598 599.. code-block:: text 600 601 some_host ansible_port=2222 ansible_user=manager 602 aws_host ansible_ssh_private_key_file=/home/example/.ssh/aws.pem 603 freebsd_host ansible_python_interpreter=/usr/local/bin/python 604 ruby_module_host ansible_ruby_interpreter=/usr/bin/ruby.1.9.3 605 606Non-SSH connection types 607------------------------ 608 609As stated in the previous section, Ansible executes playbooks over SSH but it is not limited to this connection type. 610With the host specific parameter ``ansible_connection=<connector>``, the connection type can be changed. 611The following non-SSH based connectors are available: 612 613**local** 614 615This connector can be used to deploy the playbook to the control machine itself. 616 617**docker** 618 619This connector deploys the playbook directly into Docker containers using the local Docker client. The following parameters are processed by this connector: 620 621ansible_host 622 The name of the Docker container to connect to. 623ansible_user 624 The user name to operate within the container. The user must exist inside the container. 625ansible_become 626 If set to ``true`` the ``become_user`` will be used to operate within the container. 627ansible_docker_extra_args 628 Could be a string with any additional arguments understood by Docker, which are not command specific. This parameter is mainly used to configure a remote Docker daemon to use. 629 630Here is an example of how to instantly deploy to created containers: 631 632.. code-block:: yaml 633 634 - name: create jenkins container 635 docker_container: 636 docker_host: myserver.net:4243 637 name: my_jenkins 638 image: jenkins 639 640 - name: add container to inventory 641 add_host: 642 name: my_jenkins 643 ansible_connection: docker 644 ansible_docker_extra_args: "--tlsverify --tlscacert=/path/to/ca.pem --tlscert=/path/to/client-cert.pem --tlskey=/path/to/client-key.pem -H=tcp://myserver.net:4243" 645 ansible_user: jenkins 646 changed_when: false 647 648 - name: create directory for ssh keys 649 delegate_to: my_jenkins 650 file: 651 path: "/var/jenkins_home/.ssh/jupiter" 652 state: directory 653 654For a full list with available plugins and examples, see :ref:`connection_plugin_list`. 655 656.. note:: If you're reading the docs from the beginning, this may be the first example you've seen of an Ansible playbook. This is not an inventory file. 657 Playbooks will be covered in great detail later in the docs. 658 659.. _inventory_setup_examples: 660 661Inventory setup examples 662======================== 663 664.. _inventory_setup-per_environment: 665 666Example: One inventory per environment 667-------------------------------------- 668 669If you need to manage multiple environments it's sometimes prudent to 670have only hosts of a single environment defined per inventory. This 671way, it is harder to, for instance, accidentally change the state of 672nodes inside the "test" environment when you actually wanted to update 673some "staging" servers. 674 675For the example mentioned above you could have an 676:file:`inventory_test` file: 677 678.. code-block:: ini 679 680 [dbservers] 681 db01.test.example.com 682 db02.test.example.com 683 684 [appservers] 685 app01.test.example.com 686 app02.test.example.com 687 app03.test.example.com 688 689That file only includes hosts that are part of the "test" 690environment. Define the "staging" machines in another file 691called :file:`inventory_staging`: 692 693.. code-block:: ini 694 695 [dbservers] 696 db01.staging.example.com 697 db02.staging.example.com 698 699 [appservers] 700 app01.staging.example.com 701 app02.staging.example.com 702 app03.staging.example.com 703 704To apply a playbook called :file:`site.yml` 705to all the app servers in the test environment, use the 706following command:: 707 708 ansible-playbook -i inventory_test site.yml -l appservers 709 710.. _inventory_setup-per_function: 711 712Example: Group by function 713-------------------------- 714 715In the previous section you already saw an example for using groups in 716order to cluster hosts that have the same function. This allows you, 717for instance, to define firewall rules inside a playbook or role 718without affecting database servers: 719 720.. code-block:: yaml 721 722 - hosts: dbservers 723 tasks: 724 - name: allow access from 10.0.0.1 725 iptables: 726 chain: INPUT 727 jump: ACCEPT 728 source: 10.0.0.1 729 730.. _inventory_setup-per_location: 731 732Example: Group by location 733-------------------------- 734 735Other tasks might be focused on where a certain host is located. Let's 736say that ``db01.test.example.com`` and ``app01.test.example.com`` are 737located in DC1 while ``db02.test.example.com`` is in DC2: 738 739.. code-block:: ini 740 741 [dc1] 742 db01.test.example.com 743 app01.test.example.com 744 745 [dc2] 746 db02.test.example.com 747 748In practice, you might even end up mixing all these setups as you 749might need to, on one day, update all nodes in a specific data center 750while, on another day, update all the application servers no matter 751their location. 752 753.. seealso:: 754 755 :ref:`inventory_plugins` 756 Pulling inventory from dynamic or static sources 757 :ref:`intro_dynamic_inventory` 758 Pulling inventory from dynamic sources, such as cloud providers 759 :ref:`intro_adhoc` 760 Examples of basic commands 761 :ref:`working_with_playbooks` 762 Learning Ansible's configuration, deployment, and orchestration language. 763 `Mailing List <https://groups.google.com/group/ansible-project>`_ 764 Questions? Help? Ideas? Stop by the list on Google Groups 765 `irc.libera.chat <https://libera.chat/>`_ 766 #ansible IRC chat channel 767