17 lines
450 B
Terraform
17 lines
450 B
Terraform
# The prefix must not be changed, sice the budget watcher deletes the resource group wa5p-gaming-rg when budget is exceeded
|
|
variable "prefix" {
|
|
description = "Prefix for gaming related ressources"
|
|
type = string
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Location of the deployments"
|
|
type = string
|
|
}
|
|
|
|
variable "datadisk_size_gb" {
|
|
description = "Size of the persisted datadisk in gb"
|
|
type = number
|
|
default = 1024
|
|
}
|