Skip to content

Instantly share code, notes, and snippets.

@pgporada
Created March 12, 2017 01:48
Show Gist options
  • Select an option

  • Save pgporada/0110b3a5c56d0a140db3a61420371322 to your computer and use it in GitHub Desktop.

Select an option

Save pgporada/0110b3a5c56d0a140db3a61420371322 to your computer and use it in GitHub Desktop.
Terraform AWS provider example
variable "region" {}
variable "allowed_account_ids" {}
terraform {
required_version = ">= 0.8.8"
}
provider "aws" {
region = "${var.region}"
profile = "default"
allowed_account_ids = ["${element(split(",", var.allowed_account_ids))}"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment