initial commit of replacement infrastructure automation
[awsible] / infrastructure / terraform-infrastructure / main.tf
1 provider "aws" {
2 region = "${var.region}"
3 }
4
5 module "terraform-infrastructure" {
6 source = "../modules/terraform-infrastructure"
7 region = "${var.region}"
8 remote_state_bucket = "${var.remote_state_bucket}"
9 remote_state_table = "${var.remote_state_table}"
10 }