-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (52 loc) · 1.43 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
variable "resource_group_name" {
description = "Resource group name"
type = string
}
variable "virtual_network_name" {
description = "Virtual network name"
type = string
}
variable "subnet_name" {
description = "Subnet name"
type = string
}
variable "address_prefixes" {
description = ""
default = null
}
variable "enforce_private_link_endpoint_network_policies" {
description = "Enforce private link endpoint network policies"
type = bool
default = false
}
variable "enforce_private_link_service_network_policies" {
description = "Enforce private link service network policies"
type = bool
default = false
}
variable "required_delegation" {
description = "Enable delegation services"
type = bool
default = false
}
variable "delegation_name" {
description = "A name for this delegation"
type = string
default = ""
}
variable "service_delegation_name" {
description = "The name of service to delegate to"
default = null
}
variable "service_delegation_actions" {
description = "A list of Actions which should be delegated"
default = null
}
variable "service_endpoints" {
description = "The list of Service endpoints to associate with the subnet"
default = null
}
variable "service_endpoint_policy_ids" {
description = "The list of IDs of Service Endpoint Policies to associate with the subnet."
default = null
}