Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying to multiple AWS accounts with Terraform?

Tags:

I've been looking for a way to be able to deploy to multiple AWS accounts simultaneously in Terraform and coming up dry. AWS has the concept of doing this with Stacks but I'm not sure if there is a way to do this in Terraform? If so what would be some solutions?

You can read more about the Cloudformation solution here.

like image 975
ehime Avatar asked Sep 06 '18 14:09

ehime


People also ask

Is it a good practice to create multiple users in AWS?

While you may begin your AWS journey with a single account, AWS recommends that you set up multiple accounts as your workloads grow in size and complexity.


1 Answers

You can define multiple provider aliases which can be used to run actions in different regions or even different AWS accounts.

So to perform some actions in your default region (or be prompted for it if not defined in environment variables or ~/.aws/config) and also in US East 1 you'd have something like this:

provider "aws" {   # ... }  # Cloudfront ACM certs must exist in US-East-1 provider "aws" {   alias  = "cloudfront-acm-certs"   region = "us-east-1" } 

You'd then refer to them like so:

data "aws_acm_certificate" "ssl_certificate" {   provider    = aws.cloudfront-acm-certs   ... }  resource "aws_cloudfront_distribution" "cloudfront" {   ...   viewer_certificate {     acm_certificate_arn = data.aws_acm_certificate.ssl_certificate.arn     ...   } } 

So if you want to do things across multiple accounts at the same time then you could assume a role in the other account with something like this:

provider "aws" {   # ... }  # Assume a role in the DNS account so we can add records in the zone that lives there provider "aws" {   alias   = "dns"   assume_role {     role_arn     = "arn:aws:iam::ACCOUNT_ID:role/ROLE_NAME"     session_name = "SESSION_NAME"     external_id  = "EXTERNAL_ID"   } } 

And refer to it like so:

data "aws_route53_zone" "selected" {   provider     = aws.dns   name         = "test.com." }  resource "aws_route53_record" "www" {   provider = aws.dns   zone_id  = data.aws_route53_zone.selected.zone_id   name     = "www.${data.aws_route53_zone.selected.name"   ... } 

Alternatively you can provide credentials for different AWS accounts in a number of other ways such as hardcoding them in the provider or using different Terraform variables, AWS SDK specific environment variables or by using a configured profile.

like image 104
ydaetskcoR Avatar answered Sep 26 '22 03:09

ydaetskcoR