aws-ecr
No long description provided.
Installation
dagger install github.com/mjb141/daggerverse/aws-ecr@5b9948571394a9210a5b82989841ac5479472e1d
Entrypoint
Return Type
AwsEcr !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
accessKey | Secret | null | AWS_ACCESS_KEY_ID |
secretKey | Secret | null | AWS_SECRET_ACCESS_KEY |
sessionToken | Secret | null | AWS_SESSION_TOKEN |
region | String ! | "eu-west-1" | AWS_REGION |
Example
func (m *myModule) example(region string) *AwsEcr {
return dag.
AwsEcr(region)
}
Types
AwsEcr 🔗
withCredentials() 🔗
(Required for: push) Set AWS credentials
Return Type
AwsEcr !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
accessKey | Secret | null | No description provided |
secretKey | Secret | null | No description provided |
sessionToken | Secret | null | No description provided |
region | String ! | "eu-west-1" | No description provided |
Example
func (m *myModule) example(region string, region1 string) *AwsEcr {
return dag.
AwsEcr(region).
WithCredentials(region1)
}
push() 🔗
Push an Image to AWS ECR
Return Type
[String ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
ctr | Container ! | - | An OCI-compatible container, also known as a Docker container. |
accountId | String ! | - | No description provided |
repository | String ! | - | No description provided |
tags | [String ! ] | null | No description provided |
Example
func (m *myModule) example(ctx context.Context, region string, ctr *Container, accountId string, repository string) []string {
return dag.
AwsEcr(region).
Push(ctx, ctr, accountId, repository)
}