ansible-test: exposes tiny_prefix variable

ansible-test aws provider now creates and exposes a new tiny_prefix
variable to provide a shorter prefix for the AWS tests.
This commit is contained in:
Gonéri Le Bouder 2021-06-14 13:46:26 -04:00 committed by Matt Clay
parent 08fc43f3ea
commit 5b8fb4dcd3
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,3 @@
---
minor_changes:
- ansible-test - aws creates and exposes a new tiny_prefix variable to provide a shorter prefix for the AWS tests.

View file

@ -3,6 +3,7 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import os
import uuid
from .... import types as t
@ -100,6 +101,7 @@ class AwsCloudEnvironment(CloudEnvironment):
ansible_vars = dict(
resource_prefix=self.resource_prefix,
tiny_prefix=uuid.uuid4().hex[0:12]
)
# noinspection PyTypeChecker