-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
29 lines (25 loc) · 728 Bytes
/
variables.tf
File metadata and controls
29 lines (25 loc) · 728 Bytes
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
# Vartiable for primary location
variable "location" {
type = string
description = "Sets the location for the resources to be created in."
default = "southeastasia"
}
# Vartiable for resource tagging
variable "tags" {
description = "Tags to be applied to resources"
type = map(string)
default = {
environment = "Common Network Services"
owner = "Network Team"
}
}
variable "dev_firewall_policy_name01" {
type = string
description = "Sets the firewall policy name for DEV"
default = "dev-firewall-policy-01"
}
variable "nprd_firewall_policy_name01" {
type = string
description = "Sets the firewall policy name for NPRD"
default = "nprd-firewall-policy-01"
}