append AWS region to test instance file (#45877) (#45884)

(cherry picked from commit 582a4dfa13)
pull/46223/head
Jordan Borean 6 years ago committed by Matt Davis
parent ad1c62d6dd
commit 412b6a8ca7

@ -98,6 +98,8 @@ class AnsibleCoreCI(object):
self.provider = candidate
break
self.path = os.path.expanduser('~/.ansible/test/instances/%s-%s-%s' % (self.name, self.provider, self.stage))
if self.provider in ('aws', 'azure'):
if self.provider != 'aws':
self.resource = self.provider
@ -117,6 +119,7 @@ class AnsibleCoreCI(object):
# send all non-Shippable jobs to us-east-1 to reduce api key maintenance
region = 'us-east-1'
self.path = "%s-%s" % (self.path, region)
self.endpoints = AWS_ENDPOINTS[region],
if self.platform == 'windows':
@ -134,8 +137,6 @@ class AnsibleCoreCI(object):
else:
raise ApplicationError('Unsupported platform: %s' % platform)
self.path = os.path.expanduser('~/.ansible/test/instances/%s-%s-%s' % (self.name, self.provider, self.stage))
if persist and load and self._load():
try:
display.info('Checking existing %s/%s instance %s.' % (self.platform, self.version, self.instance_id),

Loading…
Cancel
Save