-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
40 lines (31 loc) · 966 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
variable "location" {
description = "eastus, westus, northeurope, westeurope, southeastasia"
default = "eastus"
}
variable "tags" {
description = "Terraform Demo02"
type = "map"
default = {
environment = "Terraform Demo02-test"
}
}
variable "dns_name" {
description = "Connect to your cluster using dnsName.location.cloudapp.azure.com"
default = "demo02group"
}
variable "admin_user"{
description = "User name to use as the admin account on the VMs that will be part of the VM Scale Set"
default = "serg"
}
variable "admin_password"{
description = "password of amin user on vm's"
default = "4400lviv"
}
variable "application_port" {
description = "The port that you want to expose to the external load balancer"
default = 80
}
/* variable "resource_group_name" {
description = "The name of the resource group in which the resources will be created"
default = "demo02group"
} */