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.
pull/75035/head
Gonéri Le Bouder 5 years ago committed by Matt Clay
parent 08fc43f3ea
commit 5b8fb4dcd3

@ -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.

@ -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

Loading…
Cancel
Save