mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
35 lines
662 B
Terraform
35 lines
662 B
Terraform
|
variable "location" {
|
||
|
description = "Region to deploy resources"
|
||
|
default = "East US"
|
||
|
}
|
||
|
|
||
|
variable "resource_group_name" {
|
||
|
description = "Name of the resource group"
|
||
|
default = "n8n-benchmarking"
|
||
|
}
|
||
|
|
||
|
variable "host_size_family" {
|
||
|
description = "Size Family for the Host Group"
|
||
|
default = "DCSv2-Type1"
|
||
|
}
|
||
|
|
||
|
variable "vm_size" {
|
||
|
description = "VM Size"
|
||
|
# 2 vCPUs, 8 GiB memory
|
||
|
default = "Standard_DC2s_v2"
|
||
|
}
|
||
|
|
||
|
variable "number_of_vms" {
|
||
|
description = "Number of VMs to create"
|
||
|
default = 1
|
||
|
}
|
||
|
|
||
|
locals {
|
||
|
common_tags = {
|
||
|
Id = "N8nBenchmark"
|
||
|
Terraform = "true"
|
||
|
Owner = "Catalysts"
|
||
|
CreatedAt = timestamp()
|
||
|
}
|
||
|
}
|