summaryrefslogtreecommitdiffstats
path: root/s3.tf
diff options
context:
space:
mode:
Diffstat (limited to 's3.tf')
-rw-r--r--s3.tf5
1 files changed, 5 insertions, 0 deletions
diff --git a/s3.tf b/s3.tf
new file mode 100644
index 0000000..2e58a4b
--- /dev/null
+++ b/s3.tf
@@ -0,0 +1,5 @@
+resource "aws_s3_bucket" "elb_logs" {
+ bucket = "${var.vpc_name}_elb_logs"
+ acl = "private"
+ region = "${var.vpc_region}"
+}