2024-08-23 04:43:26 -07:00
|
|
|
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"
|
2024-08-30 07:49:50 -07:00
|
|
|
# 8 vCPUs, 32 GiB memory
|
|
|
|
default = "Standard_DC8_v2"
|
2024-08-23 04:43:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "number_of_vms" {
|
|
|
|
description = "Number of VMs to create"
|
|
|
|
default = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
locals {
|
|
|
|
common_tags = {
|
|
|
|
Id = "N8nBenchmark"
|
|
|
|
Terraform = "true"
|
|
|
|
Owner = "Catalysts"
|
2024-09-02 04:58:24 -07:00
|
|
|
CreatedAt = timestamp()
|
2024-08-23 04:43:26 -07:00
|
|
|
}
|
|
|
|
}
|