Skip to content

Commit

Permalink
Merge pull request #383 from stakwork/jarvis-aws-s3-regoin
Browse files Browse the repository at this point in the history
chore: add AWS_REGION back to jarvis env
  • Loading branch information
Evanfeenstra authored Nov 5, 2024
2 parents 7e64f23 + df08bb4 commit f8e0226
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/images/jarvis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ fn jarvis(
max_payment_hierarcy_depth
));
}
if let Ok(aws_region) = getenv("AWS_REGION") {
env.push(format!("AWS_S3_REGION_NAME={}", aws_region));
}
if let Ok(dynamo_db_aws_access_key_id) = getenv("DYNAMO_DB_AWS_ACCESS_KEY_ID") {
env.push(format!(
"DYNAMO_DB_AWS_ACCESS_KEY_ID={}",
Expand Down

0 comments on commit f8e0226

Please sign in to comment.