constellation/dev-docs/miniconstellation/azure-terraform/variables.tf
Adrian Stobbe 94b087197b
docs: how to set up MiniConstellation on Azure (#1999)
* init

* update doc

* move quick-setup to devdocs
2023-07-07 15:14:13 +02:00

16 lines
405 B
HCL

variable "resource_group" {
type = string
description = "Name of the new resource group for the Miniconstellation cluster"
}
variable "location" {
type = string
description = "The Azure region to create the cluster in (westus|eastus|northeurope|westeurope)"
}
variable "machine_type" {
type = string
description = "The Azure VM type"
default = "Standard_D8s_v5"
}