TF: add backup S3 bucket
For LSS-2109
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Change-Id: Iede061f0bc186ea6405a8fd400a7dd905000aeab
diff --git a/modules/resources/s3/outputs.tf b/modules/resources/s3/outputs.tf
new file mode 100644
index 0000000..c833c3d
--- /dev/null
+++ b/modules/resources/s3/outputs.tf
@@ -0,0 +1,14 @@
+output "id" {
+ description = "Name of the bucket"
+ value = "${aws_s3_bucket.s3bucket.id}"
+}
+
+output "arn" {
+ description = "ARN of the bucket"
+ value = "${aws_s3_bucket.s3bucket.arn}"
+}
+
+output "region" {
+ description = "Region of the bucket"
+ value = "${aws_s3_bucket.s3bucket.region}"
+}