Skip to content

Commit dc0b204

Browse files
darrillagaclaude
andcommitted
Add crunchloop profile to remote state data sources
The terraform-crunchloop-aws bucket requires the crunchloop profile for access. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cf7d5e7 commit dc0b204

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

infra/aws/app/eks-deploy-irsa.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
data "terraform_remote_state" "oidc" {
33
backend = "s3"
44
config = {
5-
bucket = "terraform-crunchloop-aws"
6-
key = "crunchloop-oidc-dev.tfstate"
7-
region = "us-east-1"
5+
bucket = "terraform-crunchloop-aws"
6+
key = "crunchloop-oidc-dev.tfstate"
7+
region = "us-east-1"
8+
profile = "crunchloop"
89
}
910
}
1011

infra/aws/app/main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ provider "aws" {
4242
data "terraform_remote_state" "eks" {
4343
backend = "s3"
4444
config = {
45-
bucket = "terraform-crunchloop-aws"
46-
key = "crunchloop-k8-dev.tfstate"
47-
region = "us-east-1"
45+
bucket = "terraform-crunchloop-aws"
46+
key = "crunchloop-k8-dev.tfstate"
47+
region = "us-east-1"
48+
profile = "crunchloop"
4849
}
4950
}
5051

0 commit comments

Comments
 (0)