From 43790b3a7a83318d2dfc8acf23ed511cdec633e6 Mon Sep 17 00:00:00 2001 From: sellnat77 Date: Tue, 17 Mar 2020 19:42:02 -0700 Subject: [PATCH] Moving state file to s3 backend --- Orchestration/terraform/main.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Orchestration/terraform/main.tf b/Orchestration/terraform/main.tf index e6c134886..a1cb0aeea 100644 --- a/Orchestration/terraform/main.tf +++ b/Orchestration/terraform/main.tf @@ -2,3 +2,11 @@ provider "aws" { profile = "default" region = "us-east-1" } + +terraform { + backend "s3" { + bucket = "three-one-one" + key = "terraform/backend" + region = "us-east-1" + } +}