详细说明: - 修复了@n8n/config包的TypeScript配置错误 - 移除了不存在的jest-expect-message类型引用 - 清理了所有TypeScript构建缓存 - 更新了可行性分析文档,添加了技术实施方案 - 更新了Agent prompt文档 - 添加了会展策划工作流文档 - 包含了n8n-chinese-translation子项目 - 添加了exhibition-demo展示系统框架
35 lines
664 B
HCL
Executable File
35 lines
664 B
HCL
Executable File
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"
|
|
# 8 vCPUs, 32 GiB memory
|
|
default = "Standard_DC8_v2"
|
|
}
|
|
|
|
variable "number_of_vms" {
|
|
description = "Number of VMs to create"
|
|
default = 1
|
|
}
|
|
|
|
locals {
|
|
common_tags = {
|
|
Id = "N8nBenchmark"
|
|
Terraform = "true"
|
|
Owner = "Catalysts"
|
|
CreatedAt = timestamp()
|
|
}
|
|
}
|