```{include} ../../../../roles/stage0/README.md ``` ## Role defaults Name of the hashistack instance. Defaults to a variable: * defined in: `{{ instance_dir }}/group_vars/hashistack/main.yml` * generated by the playbook: `init.yml` ``` yaml hs_stage0_name: "{{ hs_workspace }}" ``` The only provider supported so far is the default. ``` yaml hs_stage0_provider: "scaleway" ``` Architecture comes in 2 flavors: [mono|multi] ``` yaml hs_stage0_archi: "multi" ``` Directory in which the role will copy its terraform module sources. Defaults to a variable: * defined in: `{{ playbook_dir }}/group_vars/all.yml` ``` yaml hs_stage0_terraform_work_dir: "{{ hs_workspace_tf_modules_dir }}" ``` Local path to a key file which public part will be used default ssh access. ``` yaml hs_stage0_private_key_file: "{{ hs_workspace_ssh_private_key_file }}" hs_stage0_instance_type: "DEV1-L" hs_stage0_instance_image: "{{ hs_os }}" ```