mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add local provisioning step notes to EC2 pages (adapted with changes by mpdehaan).
This commit is contained in:
parent
8dae9fa5e7
commit
ef4ec735b6
1 changed files with 12 additions and 0 deletions
|
@ -23,6 +23,18 @@ Requirements for the AWS modules are minimal. All of the modules require and ar
|
|||
|
||||
You can also install it via pip if you want.
|
||||
|
||||
The following steps will often execute outside the host loop, so it makes sense to add localhost to inventory. Ansible
|
||||
may not require this step in the future::
|
||||
|
||||
[local]
|
||||
localhost
|
||||
|
||||
And in your playbook steps we'll typically be using the following pattern for provisioning steps::
|
||||
|
||||
- hosts: localhost
|
||||
connection: local
|
||||
gather_facts: False
|
||||
|
||||
.. _aws_provisioning:
|
||||
|
||||
Provisioning
|
||||
|
|
Loading…
Reference in a new issue