Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

provider/aws: ECR region support #5137

Closed
dlsniper opened this issue Feb 15, 2016 · 2 comments
Closed

provider/aws: ECR region support #5137

dlsniper opened this issue Feb 15, 2016 · 2 comments

Comments

@dlsniper
Copy link
Contributor

Hi,

Currently AWS ECR only supports running from us-east-1 which is unfortunate as I have to use it from eu-central-1.
While this is possible from the Interface, it's not currently possible from Terraform.
Would a patch that adds a special override for the region for this be accepted? The idea would be that adding a property like region = eu-east-1 would also allow for further usage of this as ECR slowly expands in the global AWS offering.

What do you think?

@stack72
Copy link
Contributor

stack72 commented Feb 16, 2016

As suggested in #5139, a suitable workaround (until AWS releases this globally) will be as follows:

provider "aws" {
}

provider "aws" {
    alias = "east"
    region = "us-east-1"
}

resource "aws_ecr_repository" "foo" {
  provider = "aws.east"
  name = "bar"
}

@stack72 stack72 closed this as completed Feb 16, 2016
@ghost
Copy link

ghost commented Apr 28, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@ghost ghost locked and limited conversation to collaborators Apr 28, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants