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 2020/01/22 10:59:30 UTC

[incubator-dlab] branch DLAB-1469 created (now 5d85fbd)

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

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


      at 5d85fbd  [DLAB-1469]: Fixed issue with parameters

This branch includes the following new commits:

     new 5d85fbd  [DLAB-1469]: Fixed issue with parameters

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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


[incubator-dlab] 01/01: [DLAB-1469]: Fixed issue with parameters

Posted by om...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 5d85fbdb852d54739b736c8be30394c040d1dbfe
Author: Oleh Martushevskyi <Ol...@epam.com>
AuthorDate: Wed Jan 22 12:59:08 2020 +0200

    [DLAB-1469]: Fixed issue with parameters
---
 .../terraform/aws/endpoint/main/outputs.tf                        | 8 ++++++++
 infrastructure-provisioning/terraform/bin/deploy/provisioning.yml | 2 +-
 .../terraform/gcp/endpoint/main/outputs.tf                        | 8 ++++++++
 3 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/terraform/aws/endpoint/main/outputs.tf b/infrastructure-provisioning/terraform/aws/endpoint/main/outputs.tf
index caa3527..cd7fd0a 100644
--- a/infrastructure-provisioning/terraform/aws/endpoint/main/outputs.tf
+++ b/infrastructure-provisioning/terraform/aws/endpoint/main/outputs.tf
@@ -21,4 +21,12 @@
 
 output "endpoint_eip_address" {
   value = aws_eip.endpoint_eip.public_ip
+}
+
+output "subnet_id" {
+  value = data.aws_subnet.data_subnet.id
+}
+
+output "vpc_id" {
+  value = data.aws_vpc.data_vpc.id
 }
\ No newline at end of file
diff --git a/infrastructure-provisioning/terraform/bin/deploy/provisioning.yml b/infrastructure-provisioning/terraform/bin/deploy/provisioning.yml
index 7a03b62..2187c80 100644
--- a/infrastructure-provisioning/terraform/bin/deploy/provisioning.yml
+++ b/infrastructure-provisioning/terraform/bin/deploy/provisioning.yml
@@ -142,7 +142,7 @@ logging:
 keycloakConfiguration:
   realm: dlab
   bearer-only: true
-  auth-server-url: https://SSN_UI_HOST/auth
+  auth-server-url: KEYCLOAK_AUTH_SERVER_URL
   ssl-required: none
   register-node-at-startup: true
   register-node-period: 600
diff --git a/infrastructure-provisioning/terraform/gcp/endpoint/main/outputs.tf b/infrastructure-provisioning/terraform/gcp/endpoint/main/outputs.tf
index e67033e..b031b2c 100644
--- a/infrastructure-provisioning/terraform/gcp/endpoint/main/outputs.tf
+++ b/infrastructure-provisioning/terraform/gcp/endpoint/main/outputs.tf
@@ -21,4 +21,12 @@
 
 output "endpoint_eip_address" {
   value = google_compute_address.static.address
+}
+
+output "subnet_id" {
+  value = data.google_compute_subnetwork.endpoint_subnet_data.name
+}
+
+output "vpc_id" {
+  value = data.google_compute_network.endpoint_vpc_data.name
 }
\ No newline at end of file


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