mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1756 from marktheunissen/fix-ec2-inventory-path
Tweak docs for correct paths and filenames for ec2 inventory
This commit is contained in:
commit
70dbc81029
1 changed files with 7 additions and 7 deletions
|
@ -14,7 +14,7 @@ Python API
|
||||||
----------
|
----------
|
||||||
|
|
||||||
The Python API is very powerful, and is how the ansible CLI and ansible-playbook
|
The Python API is very powerful, and is how the ansible CLI and ansible-playbook
|
||||||
are implemented.
|
are implemented.
|
||||||
|
|
||||||
It's pretty simple::
|
It's pretty simple::
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ External Inventory Scripts
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
Often a user of a configuration management system will want to keep inventory
|
Often a user of a configuration management system will want to keep inventory
|
||||||
in a different system. Frequent examples include LDAP, `Cobbler <http://cobbler.github.com>`_,
|
in a different system. Frequent examples include LDAP, `Cobbler <http://cobbler.github.com>`_,
|
||||||
or a piece of expensive enterprisey CMDB software. Ansible easily supports all
|
or a piece of expensive enterprisey CMDB software. Ansible easily supports all
|
||||||
of these options via an external inventory system. The plugins directory contains some of these already -- including options for EC2/Eucalyptus and OpenStack, which will be detailed below.
|
of these options via an external inventory system. The plugins directory contains some of these already -- including options for EC2/Eucalyptus and OpenStack, which will be detailed below.
|
||||||
|
|
||||||
|
@ -211,8 +211,8 @@ To successfully make an API call to AWS, you will need to configure Boto (the Py
|
||||||
|
|
||||||
You can test the script by itself to make sure your config is correct
|
You can test the script by itself to make sure your config is correct
|
||||||
|
|
||||||
cd examples/scripts
|
cd plugins/inventory
|
||||||
./ec2_external_inventory.py --list
|
./ec2.py --list
|
||||||
|
|
||||||
After a few moments, you should see your entire EC2 inventory across all regions in JSON.
|
After a few moments, you should see your entire EC2 inventory across all regions in JSON.
|
||||||
|
|
||||||
|
@ -226,7 +226,7 @@ Instance ID
|
||||||
These are groups of one since instance IDs are unique.
|
These are groups of one since instance IDs are unique.
|
||||||
e.g.
|
e.g.
|
||||||
``i-00112233``
|
``i-00112233``
|
||||||
``i-a1b1c1d1``
|
``i-a1b1c1d1``
|
||||||
|
|
||||||
Region
|
Region
|
||||||
A group of all instances in an AWS region.
|
A group of all instances in an AWS region.
|
||||||
|
@ -295,8 +295,8 @@ Both ``ec2_security_group_ids`` and ``ec2_security_group_names`` are comma-separ
|
||||||
|
|
||||||
To see the complete list of variables available for an instance, run the script by itself::
|
To see the complete list of variables available for an instance, run the script by itself::
|
||||||
|
|
||||||
cd examples/scripts
|
cd plugins/inventory
|
||||||
./ec2_external_inventory.py --host ec2-12-12-12-12.compute-1.amazonaws.com
|
./ec2.py --host ec2-12-12-12-12.compute-1.amazonaws.com
|
||||||
|
|
||||||
Example: OpenStack Inventory Script
|
Example: OpenStack Inventory Script
|
||||||
```````````````````````````````````
|
```````````````````````````````````
|
||||||
|
|
Loading…
Reference in a new issue