You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the configuration source, we have two options, remote and inline, which are now mutual exclusive. Can we support the use of both at the same time? The reason for that:
The remote option would be more useful in real projects, as usually people will run Ansible automation using a bunch of well-organized yaml stuff, rather than a single playbook.yml file. The inline option would be more likely for demo purpose.
However, there is one use case that probably can lead us to use both remote and inline at the same time. When call one or more roles as reusable building blocks from somewhere such as git repo or ansible galaxy, people often create playbook on top of that w/ some additional twists. This playbook may not be part of the existing contents in repos, but instead, is created on the fly, which can nicely be implemented by the inline option.
The text was updated successfully, but these errors were encountered:
For the configuration source, we have two options,
remote
andinline
, which are now mutual exclusive. Can we support the use of both at the same time? The reason for that:The
remote
option would be more useful in real projects, as usually people will run Ansible automation using a bunch of well-organized yaml stuff, rather than a singleplaybook.yml
file. Theinline
option would be more likely for demo purpose.However, there is one use case that probably can lead us to use both
remote
andinline
at the same time. When call one or more roles as reusable building blocks from somewhere such as git repo or ansible galaxy, people often create playbook on top of that w/ some additional twists. This playbook may not be part of the existing contents in repos, but instead, is created on the fly, which can nicely be implemented by theinline
option.The text was updated successfully, but these errors were encountered: