docs: how to set up MiniConstellation on Azure (#1999)

* init

* update doc

* move quick-setup to devdocs
This commit is contained in:
Adrian Stobbe 2023-07-07 15:14:13 +02:00 committed by GitHub
parent 50796cf279
commit 94b087197b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 491 additions and 11 deletions

View file

@ -0,0 +1,15 @@
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"
}