Skip to content

Instantly share code, notes, and snippets.

@aveek22
Last active March 12, 2023 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveek22/19600c678b35c931764db8daf5aa3ede to your computer and use it in GitHub Desktop.
Save aveek22/19600c678b35c931764db8daf5aa3ede to your computer and use it in GitHub Desktop.
terraform {
required_version = "1.1.9"
required_providers {
aws = {
source = "hashicorp/aws"
version = "> 4.26.0"
}
}
}
provider "aws" {
alias = "dev"
profile = "dev"
region = "eu-west-1"
}
provider "aws" {
alias = "prod"
profile = "prod"
region = "eu-west-1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment