When you write an Ansible playbook, you sometimes need to pass data into your play at runtime. To do that, you can use a variable, a sort of placeholder for data that's meant to be determined at some point in the future.
There are lots of places to create variables for your playbooks, such as an inventory file, included files, or even dynamically in your playbook itself. However, you can also pass variables in the terminal when you launch your playbook.
[ Download now: A system administrator's guide to IT automation. ]
Using a variable
To use a variable in a playbook, you reference it in curly braces ({{ }}
). For example, this simple playbook uses the debug
module to print the value of a variable to the terminal:
---
- hosts: localhost
tasks:
- name: echo a variable
debug:
msg: "{{ my_var }}"
Because the variable hasn't been defined, the play results in an error:
$ ansible-playbook ./example.yaml
[...]
fatal: [localhost]: FAILED! =>
{"msg": "The task includes an option with an undefined variable.
The error was: 'my_var' is undefined...
[ Get started with IT automation with the Ansible Automation Platform beginner's guide. ]
To define a variable dynamically when you run a playbook, use the --extra-vars
option along with the key and value of the variable you want to define. In this example, the key is my_var
because that's the string referenced in the playbook, and the value is any string you want the variable to contain.
$ ansible-playbook --extra-vars my_var=foo ./example.yaml
[...]
TASK [echo a variable] ****************************
ok: [localhost] => {
"msg": "foo"
}
PLAY RECAP ****************************************
localhost : ok=2 changed=0 failed=0 [...]
This time, the variable's value is passed into Ansible through the command option and successfully printed to the terminal.
Variables and Ansible
Ansible supports many ways of passing variables into scripts, generating variables within scripts, and even processing variables as part of a playbook's tasks. For more information on how to process variables in a playbook using filters, read 2 practical ways to use filters to manipulate data in Ansible and Network configuration with Ansible filters.
執筆者紹介
Seth Kenlon is a Linux geek, open source enthusiast, free culture advocate, and tabletop gamer. Between gigs in the film industry and the tech industry (not necessarily exclusive of one another), he likes to design games and hack on code (also not necessarily exclusive of one another).
チャンネル別に見る
自動化
テクノロジー、チームおよび環境に関する IT 自動化の最新情報
AI (人工知能)
お客様が AI ワークロードをどこでも自由に実行することを可能にするプラットフォームについてのアップデート
オープン・ハイブリッドクラウド
ハイブリッドクラウドで柔軟に未来を築く方法をご確認ください。
セキュリティ
環境やテクノロジー全体に及ぶリスクを軽減する方法に関する最新情報
エッジコンピューティング
エッジでの運用を単純化するプラットフォームのアップデート
インフラストラクチャ
世界有数のエンタープライズ向け Linux プラットフォームの最新情報
アプリケーション
アプリケーションの最も困難な課題に対する Red Hat ソリューションの詳細
仮想化
オンプレミスまたは複数クラウドでのワークロードに対応するエンタープライズ仮想化の将来についてご覧ください