-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.tf
More file actions
58 lines (47 loc) · 1.07 KB
/
Copy pathinput.tf
File metadata and controls
58 lines (47 loc) · 1.07 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
variable "resource_grp_name" {
description = "resouce group name"
type = string
}
variable "location" {
description = "Location info"
type = string
}
variable "Vnet" {
description = "value for azurerm_virtual_network"
type = string
}
variable "Vnet_address" {
description = "Address space for the virtual network"
type = list(string)
}
variable "web_sub_name" {
description = "Name of the web subnet"
type = string
default = "web-subnet"
}
variable "app_sub_name" {
description = "Name of the app subnet"
type = string
default = "app-subnet"
}
variable "db_sub_name" {
description = "Name of the db subnet"
type = string
default = "db-subnet"
}
variable "web_sub_address" {
description = "Address prefixes for the web subnet"
type = list(string)
}
variable "app_sub_address" {
description = "Address prefixes for the app subnet"
type = list(string)
}
variable "db_sub_address" {
description = "Address prefixes for the db subnet"
type = list(string)
}
variable "admin_username" {
description = "value for admin username"
type = string
}