mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
94b087197b
* init * update doc * move quick-setup to devdocs
16 lines
405 B
HCL
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"
|
|
}
|