Skip to content

Update Variables

rjshrjndrn edited this page Nov 27, 2017 · 17 revisions

Notes

All of these points are applicable for dev/qa environments

Variables can be found in below locations

  • defaults/main.yml

  • group_vars

  • secrets

Variables: General guidelines

  • Static values can be hard-coded in variables.

    version: 1.2.3

  • All user defined variables must be initialized in defaults/main.yml.

    sunbird_actor_system_name: ""
  • All vault vars must be preceded with vault_.
    keystore_password: "{{vault_keystore_password}}"