-
Notifications
You must be signed in to change notification settings - Fork 7
/
variables.tf
70 lines (58 loc) · 1.52 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
64
65
66
67
68
69
70
variable "location" {
description = "Azure region to use."
type = string
}
variable "location_short" {
description = "Short name of Azure region to use."
type = string
}
variable "client_name" {
description = "Client name/account used in naming."
type = string
}
variable "environment" {
description = "Project environment."
type = string
}
variable "stack" {
description = "Project stack name."
type = string
}
variable "resource_group_name" {
description = "Name of the resource group to use."
type = string
}
variable "public_ip_zones" {
description = "Public IP zones to configure."
type = list(string)
default = null
}
variable "public_ip_ids" {
description = "List of public IPs to use. Create one IP if not provided."
type = list(string)
default = []
}
variable "public_ip_domain_name_label" {
description = "DNS domain label for Nat Gateway public IP."
type = string
default = null
}
variable "public_ip_reverse_fqdn" {
description = "Reverse FQDN for Nat Gateway public IP."
type = string
default = null
}
variable "public_ip_created" {
description = "Whether to create a public IP or not."
type = bool
default = true
}
variable "idle_timeout" {
description = "Idle timeout configuration in minutes for Nat Gateway."
type = number
default = 4
}
variable "subnet_ids" {
description = "IDs of subnets to associate with the Nat Gateway."
type = list(string)
}