Vince Power
2020-03-17 3c81a6ad667b9b8b395b5b5bbd8ae9a77479d986
commit | author | age
e376f7 1 ---
VP 2 # This var is used to identify stack (cloudformation, azure resourcegroup, ...)
3 project_tag: "{{ env_type }}-{{ guid }}"
4
5 # Setting resource group
6 az_destroy_method: resource_group
7 az_resource_group: "{{ project_tag }}"
8
3c81a6 9 # Will not autogenerate SSH Keys
VP 10 set_env_authorized_key: false
11 env_authorized_key: "{{guid}}key"
12
e376f7 13 # Setting the key_name and ssh_keyfile
VP 14 key_name: id_rsa
15
16 # Setting default remote_user
17 remote_user: azure
18
19 # Setting some defaults that are checked for
20 HostedZoneId: none
21
22 # Setting this variable that specifies the group with AD admins in it
23 az_group_customer_admin: "{{aro_admin_group}}"
24
25 # Setting this variable so it doesn't try to configure anything beyond ARO
26 software_to_deploy: none
27 install_ipa_client: false
28
29 # Keyvault information
30 az_kv_name: RHPDSAppRegList
31 az_kv_id: id-
32 az_kv_key: key-
33
34 # Function URLs
35 # Its "curl {{url}}{{projecttag}}" when requesting the URL
36 az_function_get: "https://{{az_function_hostname}}/api/get/"
37 az_function_release: "https://{{az_function_hostname}}/api/release/"
38
ca5d76 39 # Number of Compute Nodes
VP 40 aro_compute_count: 2
41