mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
##### SUMMARY Use bigger roles namespace, by using the first 2 chars of each word: `load_balancer_network` => `lobane` For example, we have such cases: - `rdns` => `r` => `rd` - `route` => `r` => `ro`
12 lines
527 B
YAML
12 lines
527 B
YAML
#
|
|
# DO NOT EDIT THIS FILE! Please edit the files in tests/integration/common instead.
|
|
#
|
|
---
|
|
# Azure Pipelines will configure this value to something similar to
|
|
# "azp-84824-1-hetzner-2-13-test-2-13-hcloud-3-9-1-default-i"
|
|
hcloud_prefix: "tests"
|
|
|
|
# Used to namespace resources created by concurrent test pipelines/targets
|
|
hcloud_run_ns: "{{ hcloud_prefix | md5 }}"
|
|
hcloud_role_ns: "{{ role_name | split('_') | map('batch', 2) | map('first') | flatten() | join() }}"
|
|
hcloud_ns: "ansible-{{ hcloud_run_ns }}-{{ hcloud_role_ns }}"
|