variable "region" {}
variable "aws-profile" {}
variable "stack_name" {}

provider "aws" {
  region  = "${var.region}"
  profile = "${var.aws-profile}"
}