Skip to content

Instantly share code, notes, and snippets.

@geodis
Last active June 19, 2024 09:38
Show Gist options
  • Save geodis/1c64cf5de95b259b9188939234867752 to your computer and use it in GitHub Desktop.
Save geodis/1c64cf5de95b259b9188939234867752 to your computer and use it in GitHub Desktop.
terraform_examples

Alias provider

provider "aws" {
  alias   = "name"
  region  = "eu-west-1"
  profile = var.profile
  # assume_role {
  #   # network account
  #   role_arn     = "arn:aws:iam::1234:role/terraform"
  #   session_name = "terraform"
  #   # external_id  = "EXTERNAL_ID"
  # }
}
data "aws_route53_zone" "hosted_zone" {
  provider = aws.name
  name     = var.hosted_zone_name
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment