You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by lf...@apache.org on 2020/02/28 10:31:11 UTC

[incubator-dlab] branch DLAB-1595 updated: [DLAB-1595]: removed dependencies

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

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


The following commit(s) were added to refs/heads/DLAB-1595 by this push:
     new 33f2de7  [DLAB-1595]: removed dependencies
33f2de7 is described below

commit 33f2de795ef1e44c6e1c82a3abf4784f35ccd897
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Fri Feb 28 12:30:45 2020 +0200

    [DLAB-1595]: removed dependencies
---
 infrastructure-provisioning/terraform/azure/endpoint/main/instance.tf | 2 +-
 infrastructure-provisioning/terraform/azure/endpoint/main/network.tf  | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/terraform/azure/endpoint/main/instance.tf b/infrastructure-provisioning/terraform/azure/endpoint/main/instance.tf
index 75b9691..989c32c 100644
--- a/infrastructure-provisioning/terraform/azure/endpoint/main/instance.tf
+++ b/infrastructure-provisioning/terraform/azure/endpoint/main/instance.tf
@@ -35,7 +35,7 @@ resource "azurerm_virtual_machine" "endpoint_instance" {
   network_interface_ids         = [azurerm_network_interface.endpoint-nif.id]
   vm_size                       = var.endpoint_shape
   delete_os_disk_on_termination = true
-  depends_on                    = [azurerm_network_interface.endpoint-nif]
+
   storage_image_reference {
     publisher = element(split("_", var.ami),0)
     offer     = element(split("_", var.ami),1)
diff --git a/infrastructure-provisioning/terraform/azure/endpoint/main/network.tf b/infrastructure-provisioning/terraform/azure/endpoint/main/network.tf
index a6f8def..bda422b 100644
--- a/infrastructure-provisioning/terraform/azure/endpoint/main/network.tf
+++ b/infrastructure-provisioning/terraform/azure/endpoint/main/network.tf
@@ -99,5 +99,4 @@ resource "azurerm_network_interface" "endpoint-nif" {
 resource "azurerm_network_interface_security_group_association" "endpoint-nif-sg" {
   network_interface_id      = azurerm_network_interface.endpoint-nif.id
   network_security_group_id = azurerm_network_security_group.enpoint-sg.id
-  depends_on                = [azurerm_network_security_group.enpoint-sg, azurerm_network_interface.endpoint-nif]
 }
\ 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