I am an ansible novice, kind of not quite understanding on the difference between with or without quotes for a value defined in an Ansible variable. Here is an example:
I can see for variable size, its value is "20G", which is going with double quote, interface type: "bridge" is the same. But for some other variables like target, its value is sda, why not "sda"? What is the difference on with or without quotes for the value defined by a variable?
devices:
cpu:
cores: 2
memory: 4096
storage:
disks:
- pool: local
target: sda
size: "20G"
unit: 0
boot: 1
network:
interfaces:
- source:
type: "bridge"