mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-02 14:26:23 -04:00
docs: how to set up MiniConstellation on Azure (#1999)
* init * update doc * move quick-setup to devdocs
This commit is contained in:
parent
50796cf279
commit
94b087197b
9 changed files with 491 additions and 11 deletions
15
dev-docs/miniconstellation/azure-terraform/variables.tf
Normal file
15
dev-docs/miniconstellation/azure-terraform/variables.tf
Normal 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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue