31 lines
914 B
Terraform
31 lines
914 B
Terraform
variable "subscription_id" {
|
|
description = "Subscription ID of the subscription for gaming related stuff"
|
|
type = string
|
|
default = "90aed1cc-9b7f-4d3d-b2b9-b3654b49835e"
|
|
}
|
|
|
|
|
|
# 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
|
|
default = "wa5p-gaming"
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Location for gaming related ressources, should be as close as possible for low latency"
|
|
type = string
|
|
default = "westeurope"
|
|
}
|
|
|
|
variable "vm_admin_username" {
|
|
description = "VM admin username, password will be generated randomly"
|
|
type = string
|
|
default = "jona"
|
|
}
|
|
variable "tailscale_authkey" {
|
|
description = "Tailscale auth key for unattended login"
|
|
type = string
|
|
sensitive = true
|
|
}
|