This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
95 lines (76 loc) · 1.99 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
variable "repository" {
type = string
default = ""
description = "Terraform current module repo"
}
variable "label_order" {
type = list(any)
default = ["name", "environment"]
description = "Label order, e.g. sequence of application name and environment `name`,`environment`,'attribute' [`webserver`,`qa`,`devops`,`public`,] ."
}
variable "managedby" {
type = string
default = ""
description = "ManagedBy, eg ''."
}
variable "location" {
description = "Azure region to use"
type = string
}
variable "name" {
type = string
default = ""
description = "Name (e.g. `app` or `cluster`)."
}
variable "environment" {
description = "Project environment"
type = string
}
variable "resource_group_name" {
description = "Name of the resource group to use"
type = string
}
variable "name_prefix" {
description = "Optional prefix for the generated name"
type = string
default = ""
}
variable "public_ip_custom_name" {
description = "Custom name for public IP"
type = string
default = null
}
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 "create_public_ip" {
description = "Should we create a public IP or not?"
type = bool
default = true
}
variable "nat_gateway_custom_name" {
description = "Custom name for Nat gateway"
type = string
default = null
}
variable "nat_gateway_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)
default = []
}
variable "create_nat_gateway" {
type = bool
default = true
}