169163334 - Adds Azure Container Registry
Adds the ACR. Georeplication disabled for the moment until we add the DR site.
This commit is contained in:
37
terraform/modules/container_registry/variables.tf
Normal file
37
terraform/modules/container_registry/variables.tf
Normal file
@@ -0,0 +1,37 @@
|
||||
variable "region" {
|
||||
type = string
|
||||
description = "Region this module and resources will be created in"
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = string
|
||||
description = "Unique name for the services in this module"
|
||||
}
|
||||
|
||||
variable "environment" {
|
||||
type = string
|
||||
description = "Environment these resources reside (prod, dev, staging, etc)"
|
||||
}
|
||||
|
||||
variable "owner" {
|
||||
type = string
|
||||
description = "Owner of the environment and resources created in this module"
|
||||
}
|
||||
|
||||
variable "backup_region" {
|
||||
type = string
|
||||
description = "Backup region for georeplicating the container registry"
|
||||
}
|
||||
|
||||
variable "sku" {
|
||||
type = string
|
||||
description = "SKU to use for the container registry service"
|
||||
default = "Premium"
|
||||
}
|
||||
|
||||
variable "admin_enabled" {
|
||||
type = string
|
||||
description = "Admin enabled? (true/false default: false)"
|
||||
default = false
|
||||
|
||||
}
|
Reference in New Issue
Block a user