-
Notifications
You must be signed in to change notification settings - Fork 2
/
variable.tf
39 lines (32 loc) · 909 Bytes
/
variable.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
variable "resource_group_name" {
type = string
description = "(Required) Name of Resource Group"
}
variable "resource_group_location" {
type = string
description = "(Required) Location where we want to implement code"
}
variable "virtual_network_name" {
type = string
description = "(Required) Name of Virtual Network"
}
# Define bastion subnet addr prefix
variable "bastion_subnet_addr_prefix" {
type = list(string)
description = "(Required) Ip address range of subnet"
}
variable "ip_allocation" {
type = string
default = "Static"
description = "(Required) IP allocation method"
}
variable "sku" {
type = string
default = "Standard"
description = "(Required) SKU type"
}
variable "bastion_tags" {
type = map(string)
default = {}
description = "(Optional) Tag which will associated to the Bastion Host."
}