-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (29 loc) · 877 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
variable "create_virtual_network" {
description = "A flag to create a virtual network"
type = bool
}
variable "environment" {
description = "The environment that the resources are created in"
type = string
}
variable "resource_group_name" {
description = "The name of the resource group"
type = string
}
variable "subnet_name_prefix" {
description = "The prefix that is used for the subnet names"
type = string
}
variable "virtual_network_address_space" {
description = "The address space that is used by the virtual network"
type = list(string)
default = null
}
variable "virtual_network_location" {
description = "The location/region where the virtual network is created"
type = string
}
variable "virtual_network_name" {
description = "The name of the virtual network"
type = string
}