generated from UKHO/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
33 lines (33 loc) · 832 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
variable "spokerg" {
description = "name of spoke resource group"
}
variable "hubrg" {
description = "name of hub resource group"
}
variable "hubrt" {
description = "hub route table name"
}
variable "id" {
description = "environment you're deploying too"
}
variable "routetable" {
description = "spoke route table"
}
variable "spokeroute" {
description = "Spoke routetable route array"
}
variable "hubroute" {
description = "Hub routetable routes array"
}
variable "hop" {
description = "The type of hop you require in a array"
}
variable "subnets" {
description = "array contains names of subnets, the subnet array used on the tfmodule-azure-vnet-with-nsg fits this expected pattern"
}
variable "spokeprefix" {
description = "Spoke ip route array"
}
variable "hubprefix" {
description = "Hub ip route array"
}