# Terraform variables for VM deployment # Copy this file to terraform.tfvars.vm and update with your values # Enable VM deployment (set to true to use VM deployment instead of AKS) vm_deployment_enabled = true # Azure regions for VM deployment vm_regions = ["eastus", "westus", "westeurope"] # Number of VMs per node type per region validator_vm_count = 2 sentry_vm_count = 2 rpc_vm_count = 2 # Use VM Scale Sets instead of individual VMs use_vmss = false # SSH public key for VM access # Generate with: ssh-keygen -t rsa -b 4096 -C "besu-vm-deployment" ssh_public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC..." # VM sizes vm_size_validator = "Standard_D4s_v3" vm_size_sentry = "Standard_D4s_v3" vm_size_rpc = "Standard_D8s_v3" # Disk sizes (GB) vm_disk_size_validator = 512 vm_disk_size_sentry = 256 vm_disk_size_rpc = 256 # Storage account type vm_storage_account_type = "Premium_LRS" # VM configuration vm_admin_username = "besuadmin" vm_enable_boot_diagnostics = true vm_enable_managed_identity = true # Resource group and cluster name (should match main.tf variables) resource_group_name = "defi-oracle-mainnet-rg" cluster_name = "defi-oracle-aks" location = "eastus"