File tree Expand file tree Collapse file tree
nova/core/roles/deploy_vars Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ datacenter_location: {} # Required when deploying to vSphere
1717main_id : " {{ inventory_hostname }}" # For when using local inventory, main_id is a Providentia specific variable
1818save_secrets_to_vault : false # Set to true to save accounts to vault, required a running HashiCorp Vault server with LDAP auth enabled
1919gt_username : gt # Default non-root/Administrator username for deployment
20- deploy_vars_post_roles : [] # List of roles to include after credentials facts have been set
20+ deploy_vars_pre_roles : " {{ deploy_vars_post_roles }}" # List of roles to include as the very first step of the deploy
21+ deploy_vars_post_roles : [] # DEPRECATED
2122immutable : false # Set to true to stop running any role on the host or group
2223
2324# Defaulting to ansible_password when password is required for sudo
Original file line number Diff line number Diff line change 1010- name : Including following post-deploy_vars roles...
1111 ansible.builtin.include_role :
1212 name : " {{ item }}"
13- loop : " {{ deploy_vars_post_roles }}"
14- when : deploy_vars_post_roles != []
13+ loop : " {{ deploy_vars_pre_roles }}"
14+ when : deploy_vars_pre_roles != []
1515
1616- name : Delegating required tasks to localhost...
1717 delegate_to : localhost
You can’t perform that action at this time.
0 commit comments