Created
March 10, 2020 15:02
-
-
Save AndrewBestbier/9387e669b1c62e79269d71566f6ce2c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| provider "aws" { | |
| version = "~> 2.0" | |
| region = "eu-west-2" # Setting my region to London. Use your own region here | |
| } | |
| resource "aws_ecr_repository" "my_first_ecr_repo" { | |
| name = "my-first-ecr-repo" # Naming my repository | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there, I was following your tutorial in Medium, this may need refreshing for newer versions of TF. I got the following error:
I think this will also remove any errors for newer macs:
I hope this is useful! 😃