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

[incubator-dlab] branch DLAB-edge created (now ebf673e)

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

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


      at ebf673e  [DLAB-edge] Created terraform scripts for project deployment[Azure]

This branch includes the following new commits:

     new ebf673e  [DLAB-edge] Created terraform scripts for project deployment[Azure]

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-edge] Created terraform scripts for project deployment[Azure]

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

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

commit ebf673eb3cdef50d91fdad0cf08e72d1795ebc8d
Author: Dyoma33 <de...@gmail.com>
AuthorDate: Fri Sep 27 14:14:23 2019 +0300

    [DLAB-edge] Created terraform scripts for project deployment[Azure]
---
 .../terraform/azure/project/main/variables.tf      | 88 ++++++----------------
 1 file changed, 22 insertions(+), 66 deletions(-)

diff --git a/infrastructure-provisioning/terraform/azure/project/main/variables.tf b/infrastructure-provisioning/terraform/azure/project/main/variables.tf
index b0c1719..e3395fd 100644
--- a/infrastructure-provisioning/terraform/azure/project/main/variables.tf
+++ b/infrastructure-provisioning/terraform/azure/project/main/variables.tf
@@ -19,93 +19,49 @@
 #
 # ******************************************************************************
 
-variable "subscription_id" {
-  default = "493eb9b7-74b9-4b16-8b5b-2b25cab1e41e"
-}
+variable "subscription_id" {}
 
-variable "client_id" {
-  default = "86d10c1d-a668-43fd-a2e7-debe517150ac"
-}
+variable "client_id" {}
 
-variable "client_secret" {
-  default = "3HqDqG]+b=0opkPQqB71vRS/c6104F+q"
-}
+variable "client_secret" {}
 
-variable "tenant_id" {
-  default = "b41b72d0-4e9f-4c26-8a69-f949f367c91d"
-}
+variable "tenant_id" {}
 
-variable "service_base_name" {
-  default = "dem-edge1"
-}
+variable "service_base_name" {}
 
-variable "resource_group" {
-  default = "demyan-rg"
-}
+variable "resource_group" {}
 
-variable "project_name" {
-  default = "proj1"
-}
+variable "project_name" {}
 
-variable "project_tag" {
-  default = "proj1"
-}
+variable "project_tag" {}
 
-variable "endpoint_tag" {
-  default = "end1"
-}
+variable "endpoint_tag" {}
 
-variable "user_tag" {
-  default = "dem1"
-}
+variable "user_tag" {}
 
-variable "custom_tag" {
-  default = ""
-}
+variable "custom_tag" {}
 
-variable "os_env" {
-  default = "redhat"
-}
+variable "os_env" {}
 
-variable "region" {
-  default = "westeurope"
-}
+variable "region" {}
 
-variable "product" {
-  default = "dlab"
-}
+variable "product" {}
 
-variable "vpc_id" {
-  default = "dem-vnet"
-}
+variable "vpc_id" {}
 
-variable "subnet_id" {
-  default = "/subscriptions/493eb9b7-74b9-4b16-8b5b-2b25cab1e41e/resourceGroups/demyan-rg/providers/Microsoft.Network/virtualNetworks/dem-vnet/subnets/default"
-}
+variable "subnet_id" {}
 
-variable "ps_cidr" {
-  default = "172.31.18.0/24"
-}
+variable "ps_cidr" {}
 
-variable "edge_cidr" {
-  default = "172.31.1.0/24"
-}
+variable "edge_cidr" {}
 
-variable "edge_private_ip" {
-  default = "172.31.1.4"
-}
+variable "edge_private_ip" {}
 
-variable "instance_type" {
-  default = "Standard_DS1_v2"
-}
+variable "instance_type" {}
 
-variable "ssh_key" {
-  default = "~/.keys/id_rsa.pub"
-}
+variable "ssh_key" {}
 
-variable "initial_user" {
-  default = "ubuntu"
-}
+variable "initial_user" {}
 
 variable "ami_publisher" {
   type = "map"


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