-
Notifications
You must be signed in to change notification settings - Fork 214
/
variables.tf
47 lines (38 loc) · 947 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
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "location" {
type = string
description = "Resource group location. Make sure you are deploying in a location where Azure Image Builder is supported"
}
variable "prefix" {
type = string
description = "Prefix for resource names"
}
variable "tags" {
description = "Tags to be used for this resource deployment."
type = map(any)
default = null
}
variable "publisher" {
type = string
description = "Image publisher"
}
variable "offer" {
type = string
description = "Image offer"
}
variable "sku" {
type = string
description = "Image SKU"
}
variable "image_replication_regions" {
type = string
description = "Image replication regions"
}
variable "aib_region" {
type = string
description = "Image builder region"
}
variable "aib_api_version" {
type = string
description = "Image builder API version"
default = "2020-02-14"
}