initial commit of replacement infrastructure automation
[awsible] / infrastructure / terraform-infrastructure / main.tf
diff --git a/infrastructure/terraform-infrastructure/main.tf b/infrastructure/terraform-infrastructure/main.tf
new file mode 100644 (file)
index 0000000..903f99b
--- /dev/null
@@ -0,0 +1,10 @@
+provider "aws" {
+       region = "${var.region}"
+}
+
+module "terraform-infrastructure" {
+       source = "../modules/terraform-infrastructure"
+       region = "${var.region}"
+       remote_state_bucket = "${var.remote_state_bucket}"
+       remote_state_table = "${var.remote_state_table}"
+}