Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save include/20fa9fd3a0d42ad943796f9b9084bcf3 to your computer and use it in GitHub Desktop.

Select an option

Save include/20fa9fd3a0d42ad943796f9b9084bcf3 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