-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
40 lines (34 loc) · 1.03 KB
/
variables.tf
File metadata and controls
40 lines (34 loc) · 1.03 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
variable "resource_group_name" {
description = "Resource Group name"
type = string
}
variable "location" {
description = "Location in which to deploy the network"
type = string
}
variable "vnet_name" {
description = "VNET name"
type = string
}
variable "address_space" {
description = "VNET address space"
type = list(string)
}
variable "subnets" {
description = "Subnets configuration"
type = list(object({
name = string
address_prefixes = list(string)
private_endpoint_network_policies = string
private_link_service_network_policies_enabled = bool
delegation = optional(string)
}))
}
variable "tags" {
description = "(Optional) Specifies the tags of the Azure Virtual Network resource."
default = {}
}
variable "log_analytics_workspace_id" {
description = "Specifies the resource id of the Azure Log Analytics workspace."
type = string
}