user1974753
user1974753

Reputation: 1457

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?

Upvotes: 7

Views: 4389

Answers (2)

Patrick
Patrick

Reputation: 1775

AWS does condsider them separate, though the code might be the same. (Imagine college grads testing hello world with same code) You can still have them as an active-active setup or for fail-over. Refer this for more details.

Upvotes: 0

cerberus
cerberus

Reputation: 561

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

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

Upvotes: 12

Related Questions