You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/docs/docsite/rst/user_guide
Keith Maxwell 7fbacf920d Remove misleading statement passwords must be same (#49798)
* Remove misleading statement passwords must be same

Since 2.4 Ansible has supported multiple vault passwords:
<https://docs.ansible.com/ansible/latest/user_guide/vault.html#multiple-vault-passwords>

Meaning lines like the following are misleading:

> The password used with vault currently must be the same for all files you wish
> to use together at the same time.

-- `docs/docsite/rst/user_guide/vault.rst`

To demonstrate this with Ansible 2.7, save the following as `example.yaml`:

```
- name: Display output from two vaults with different passwords
  hosts: localhost
  connection: local
  vars_files: [one.yaml, two.yaml]
  tasks:
    - name: View secret from one.yaml vault
      debug: { var: one }
    - name: View secret from two.yaml vault
      debug: { var: two }
```

Then run the three following commands choosing two different passwords:

```
$ echo 'one: 1' | ansible-vault encrypt --vault-id id1@prompt --output=one.yaml
$ echo 'two: 2' | ansible-vault encrypt --vault-id id2@prompt --output=two.yaml
$ ansible-playbook --vault-id id1@prompt --vault-id id2@prompt example.yaml
```

`ansible-vault` stores an ID in plain text in the vault file.

* Remove note about default in Ansible 2.1

As requested by gundalow in https://github.com/ansible/ansible/pull/49798
7 years ago
..
shared_snippets
become.rst standardize connection variable names (#51776) 7 years ago
command_line_tools.rst
index.rst
intro.rst
intro_adhoc.rst
intro_bsd.rst
intro_dynamic_inventory.rst Broken link fixed. (#51492) 7 years ago
intro_getting_started.rst Become plugins (#50991) 7 years ago
intro_inventory.rst standardize connection variable names (#51776) 7 years ago
intro_patterns.rst
intro_windows.rst
modules.rst
modules_intro.rst
modules_support.rst
playbook_pathing.rst
playbooks.rst
playbooks_advanced_syntax.rst
playbooks_async.rst
playbooks_best_practices.rst
playbooks_blocks.rst
playbooks_checkmode.rst
playbooks_conditionals.rst add note about register + skip (#51339) 7 years ago
playbooks_debugger.rst
playbooks_delegation.rst Update playbooks_delegation.rst (#51949) 7 years ago
playbooks_environment.rst
playbooks_error_handling.rst
playbooks_filters.rst Fix yaml indentation for from_yaml_all filter example (#51998) 7 years ago
playbooks_filters_ipaddr.rst
playbooks_intro.rst Become plugins (#50991) 7 years ago
playbooks_lookups.rst
playbooks_loops.rst grammer fix and changed description to iteratively from recursively. (#50837) 7 years ago
playbooks_module_defaults.rst
playbooks_prompts.rst added unsafe toggle to vars_prompt (#49219) 7 years ago
playbooks_python_version.rst
playbooks_reuse.rst
playbooks_reuse_includes.rst
playbooks_reuse_roles.rst two indentation fixes in playbooks_reuse_roles.rst (#51934) 7 years ago
playbooks_roles.rst
playbooks_special_topics.rst
playbooks_startnstep.rst
playbooks_strategies.rst
playbooks_tags.rst
playbooks_templating.rst
playbooks_tests.rst
playbooks_variables.rst standardize connection variable names (#51776) 7 years ago
playbooks_vault.rst
plugin_filtering_config.rst
quickstart.rst
vault.rst Remove misleading statement passwords must be same (#49798) 7 years ago
windows.rst
windows_dsc.rst
windows_faq.rst
windows_setup.rst
windows_usage.rst
windows_winrm.rst Add a missed command (#50781) 7 years ago