Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Use us-east-1 for public ECR repository
Browse files Browse the repository at this point in the history
  • Loading branch information
thought-tobi committed Mar 27, 2024
1 parent 3409ca5 commit ce3e220
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ terraform {
}

backend "s3" {
bucket = "telegram-mood-tracker-state"
key = "mood-tracker/terraform.tfstate"
region = "eu-central-1"
bucket = "mood-tracker-bucket"
key = "terraform.tfstate"
region = "us-east-1"
}
}

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

data "aws_caller_identity" "current" {}

module "mood_tracker_repository" {
Expand Down

0 comments on commit ce3e220

Please sign in to comment.