Bootstrap FreeKB - Ansible - Upper case first character using the title filter
Ansible - Upper case first character using the title filter

Updated:   |  Ansible articles

title is a Jinja2 filter, used to update a string so that the first character is upper case and all subsequent characters are lower case. Or, the capatalize filter could be used as well. In this example, "hello world" will be updated to "Hello world".

- name: "output 'hello world', upper case first character"
  debug: 
    msg: "{{ 'hello world' | title }}"

 

Which should return the following.

TASK [output 'hello world', upper case first character]
ok: [server1.example.com] => {
    "msg": [
        "Hello world"
    ]
}

 

Let's say you are using the vars plugin to create a variable, like this.

vars:
  foo: "hello world"

 

The debug module can be used to output the variable, like this.

- name: "output the contents of the 'foo' variable"
  debug: 
    msg: "{{ foo }}"

 

Which should return the following.

TASK [output the contents of the 'foo' variable]
ok: [server1.example.com] => {
    "msg": [
        "hello world"
    ]
}

 

The title filter can be used to update the variable so that the first character is upper case and all subsequent characters are lower case. Notice that foo is not wrapped in quotes, so that foo is interpreted as a variable, not a string.

- name: "output the contents of the 'foo' variable, upper case first character"
  debug: 
    msg: "{{ foo | title }}"

 

Which should return the following.

TASK [output the contents of the 'foo' variable, upper case first character]
ok: [server1.example.com] => {
    "msg": [
        "Hello world"
    ]
}

 




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter ec8637 in the box below so that we can be sure you are a human.