-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
44 lines (37 loc) · 1.12 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
variable "resource_group_name" {
default = "myRegistryRG"
description = "The name for the resource group where the Azure Container Registry will reside."
}
variable "location" {
default = "north europe"
description = "The location for the resource group where the Azure Container Registry will reside."
}
variable "name" {
default = "myRegistry"
description = "The name for the Azure Container Registry"
}
variable "sku" {
default = "premium"
description = "The SKU for the Azure Container Registry"
}
variable "enable_admin" {
default = false
description = "Enable admin for the Azure Container Registry"
}
variable "georeplication_locations" {
default = []
description = "Georeplication regions for the Azure Container Registry"
}
variable "webhooks" {
description = "(Required) A list of objects describing the webhooks resources required."
type = list(object({
name = string
service_uri = string
status = string
scope = string
actions = list(string)
custom_headers = map(string)
}))
default = []
}
variable "tags" {}