Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying AWS Lambda to multiple regions?

Quick one.

What does it look like when you’ve got one lambda deployed in multiple regions? Is it just 2 separate copies of the same code with a different name, different ARN etc?

does AWS view them as unrelated lambdas?

Or does it know they’re the same thing deployed in different regions?

like image 532
user1974753 Avatar asked Apr 24 '18 13:04

user1974753


1 Answers

Two lambda will be treated as separate entities. Sample ARN of lambda

arn:aws:lambda:region:account-id:function:function-name

like image 71
cerberus Avatar answered Sep 29 '22 00:09

cerberus