We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce0ea43 commit c2439a6Copy full SHA for c2439a6
terraform/resources/ecr.tf
@@ -18,6 +18,7 @@ resource null_resource ecr_image {
18
19
provisioner "local-exec" {
20
command = <<EOF
21
+ set -e
22
aws ecr get-login-password --region ${data.aws_region.current.name} | docker login --username AWS --password-stdin "https://${data.aws_caller_identity.current.account_id}.dkr.ecr.${data.aws_region.current.name}.amazonaws.com"
23
if [ "${var.arch}" = "arm64" ]; then
24
LAMBDA_IMAGE="amazon/aws-lambda-provided:al2023.2024.05.01.10"
0 commit comments