mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
append AWS region to test instance file (#45877)
This commit is contained in:
parent
197ddd3c45
commit
582a4dfa13
1 changed files with 3 additions and 2 deletions
|
@ -95,6 +95,8 @@ class AnsibleCoreCI(object):
|
||||||
self.provider = candidate
|
self.provider = candidate
|
||||||
break
|
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 in ('aws', 'azure'):
|
||||||
if self.provider != 'aws':
|
if self.provider != 'aws':
|
||||||
self.resource = self.provider
|
self.resource = self.provider
|
||||||
|
@ -114,6 +116,7 @@ class AnsibleCoreCI(object):
|
||||||
# send all non-Shippable jobs to us-east-1 to reduce api key maintenance
|
# send all non-Shippable jobs to us-east-1 to reduce api key maintenance
|
||||||
region = 'us-east-1'
|
region = 'us-east-1'
|
||||||
|
|
||||||
|
self.path = "%s-%s" % (self.path, region)
|
||||||
self.endpoints = AWS_ENDPOINTS[region],
|
self.endpoints = AWS_ENDPOINTS[region],
|
||||||
self.ssh_key = SshKey(args)
|
self.ssh_key = SshKey(args)
|
||||||
|
|
||||||
|
@ -130,8 +133,6 @@ class AnsibleCoreCI(object):
|
||||||
else:
|
else:
|
||||||
raise ApplicationError('Unsupported platform: %s' % platform)
|
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():
|
if persist and load and self._load():
|
||||||
try:
|
try:
|
||||||
display.info('Checking existing %s/%s instance %s.' % (self.platform, self.version, self.instance_id),
|
display.info('Checking existing %s/%s instance %s.' % (self.platform, self.version, self.instance_id),
|
||||||
|
|
Loading…
Reference in a new issue