Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from typing import TypedDict

import localstack.services.cloudformation.provider_utils as util
from localstack.constants import AWS_REGION_US_EAST_1, DEFAULT_AWS_ACCOUNT_ID
from localstack.services.cloudformation.resource_provider import (
OperationStatus,
ProgressEvent,
Expand Down Expand Up @@ -102,7 +101,7 @@ def create(
model.update(
{
"Arn": arns.ecr_repository_arn(
model["RepositoryName"], DEFAULT_AWS_ACCOUNT_ID, AWS_REGION_US_EAST_1
model["RepositoryName"], request.account_id, request.region_name
),
"RepositoryUri": "http://localhost:4566",
"ImageTagMutability": "MUTABLE",
Expand Down
Loading