X-Git-Url: http://git.squeep.com/?p=awsible;a=blobdiff_plain;f=infrastructure%2Fterraform-infrastructure%2Fmain.tf;fp=infrastructure%2Fterraform-infrastructure%2Fmain.tf;h=903f99b6d35c3818459eb75eea583e6608068be0;hp=0000000000000000000000000000000000000000;hb=8576668075ca95e44481d9c9ed29d7e6af024bdc;hpb=933c48ff1e134168de3aaa2d20e4d43c13d04928 diff --git a/infrastructure/terraform-infrastructure/main.tf b/infrastructure/terraform-infrastructure/main.tf new file mode 100644 index 0000000..903f99b --- /dev/null +++ b/infrastructure/terraform-infrastructure/main.tf @@ -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}" +}