You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by om...@apache.org on 2019/11/06 14:34:23 UTC

[incubator-dlab] branch DLAB-1158 updated: added bucket creation;

This is an automated email from the ASF dual-hosted git repository.

omartushevskyi pushed a commit to branch DLAB-1158
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git


The following commit(s) were added to refs/heads/DLAB-1158 by this push:
     new 7143b95  added bucket creation;
7143b95 is described below

commit 7143b955e2d6b3105b0e3ac2c1d9d4aa1e437394
Author: Oleh Martushevskyi <Ol...@epam.com>
AuthorDate: Wed Nov 6 16:34:05 2019 +0200

    added bucket creation;
---
 .../terraform/aws/endpoint/main/s3.tf              | 37 ++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/infrastructure-provisioning/terraform/aws/endpoint/main/s3.tf b/infrastructure-provisioning/terraform/aws/endpoint/main/s3.tf
new file mode 100644
index 0000000..a538555
--- /dev/null
+++ b/infrastructure-provisioning/terraform/aws/endpoint/main/s3.tf
@@ -0,0 +1,37 @@
+# *****************************************************************************
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+# ******************************************************************************
+
+locals {
+  shared_s3_name = "${var.service_base_name}-${var.endpoint_id}-shared-bucket"
+}
+
+resource "aws_s3_bucket" "shared_bucket" {
+  bucket = local.shared_s3_name
+  acl    = "private"
+  tags   = {
+    Name                                          = local.shared_s3_name
+    "${local.additional_tag[0]}"                  = local.additional_tag[1]
+    "${var.tag_resource_id}"                      = "${var.service_base_name}:${local.shared_s3_name}"
+    "${var.service_base_name}-Tag"                = local.shared_s3_name
+  }
+  force_destroy = true
+}
+


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org