-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (45 loc) · 1.17 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
variable "nat_gateway_name" {
type = string
description = "NAT Gateway name"
}
variable "resource_group" {
type = string
description = "Resource group"
}
variable "location" {
type = string
description = "Azure location"
}
variable "tags" {
type = map(any)
description = "Resource tags"
default = {}
}
variable "nat_gateway_public_ip_name" {
type = string
description = "NAT Gateway public ip resource name"
default = null
}
variable "subnets" {
type = map(string)
description = "Name to id map of subnet associated with NAT Gateway"
default = {}
}
variable "public_ip_configuration" {
type = object({
allocation_method = optional(string, "Static")
sku = optional(string, "Standard")
zones = optional(list(string), [])
})
description = "Configuration options for public ip"
default = {}
}
variable "nat_gateway_configuration" {
type = object({
sku = optional(string, "Standard")
idle_time = optional(number, 10)
zones = optional(list(string), [])
})
description = "Configuration options for azure nat gateway"
default = {}
}