This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example which shows how to reach nested ansible variable which is partially different. | |
| # Run that plabook with ansible-playbook -e "env=test" ansible-nested-variable.yml | |
| --- | |
| # | |
| - hosts: localhost | |
| connection : ssh | |
| gather_facts: no | |
| vars: | |
| cidr_blocks: | |
| vpc_production_cidr_block: "10.10.0.0/28" |
OlderNewer