Skip to content

Commit 1782ca1

Browse files
authored
Merge pull request #336 from concourse/aws-cross-account
Add aws_account_id parameter
2 parents 5ebd24a + 8869bd9 commit 1782ca1

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,15 @@ differences:
164164
<code>aws_role_arn</code> is also specified.
165165
</td>
166166
</tr>
167+
<tr>
168+
<td><code>aws_account_id</code> <em>(Optional)</em></td>
169+
<td>
170+
The AWS Account ID that the image is located in. Useful if interacting with
171+
images in another account. If omitted then the current AWS account ID will
172+
be used. Be sure to wrap the account ID in quotes so it is parsed as a
173+
string instead of a number.
174+
</td>
175+
</tr>
167176
<tr>
168177
<td><code>platform</code> <em>(Optional)<br>(Experimental)</em></td>
169178
<td>

types.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ type AwsCredentials struct {
6464
AWSECRRegistryId string `json:"aws_ecr_registry_id,omitempty"`
6565
AwsRoleArn string `json:"aws_role_arn,omitempty"`
6666
AwsRoleArns []string `json:"aws_role_arns,omitempty"`
67+
AwsAccountId string `json:"aws_account_id,omitempty"`
6768
}
6869

6970
type BasicCredentials struct {
@@ -426,7 +427,12 @@ func (source *Source) AuthenticateToECR() bool {
426427

427428
// Update username and repository
428429
source.Username = "AWS"
429-
source.Repository = strings.Join([]string{strings.TrimPrefix(*result.AuthorizationData[0].ProxyEndpoint, "https://"), source.Repository}, "/")
430+
431+
if source.AwsAccountId != "" {
432+
source.Repository = fmt.Sprintf("%s.dkr.ecr.%s.amazonaws.com/%s", source.AwsAccountId, source.AwsRegion, source.Repository)
433+
} else {
434+
source.Repository = fmt.Sprintf("%s/%s", strings.TrimPrefix(*result.AuthorizationData[0].ProxyEndpoint, "https://"), source.Repository)
435+
}
430436

431437
return true
432438
}

0 commit comments

Comments
 (0)