-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
34 lines (29 loc) · 976 Bytes
/
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
variable "public_ip_name" {
type = list(string)
description = "(Required) Specifies the name of the Public IP resource"
}
variable "location" {
type = string
description = "(Required) Specifies the supported Azure location where the resource exists."
}
variable "resource_group_name" {
type = string
description = "(Required) The name of the resource group in which to create the public ip"
}
variable "allocation_method" {
type = string
description = "(Required) Defines the allocation method for this IP address.Possible values are Static or Dynamic"
default = "Dynamic"
}
variable "sku" {
type = string
description = "(Optional) The SKU of the Public IP. Accepted values are Basic and Standard. Defaults to Basic."
default = "Basic"
}
variable "tags" {
description = "A mapping of tags which should be assigned to the PublicIP"
type = map(string)
default = {
author : "opstree"
}
}