- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control. - Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities. - Created .gitmodules to include OpenZeppelin contracts as a submodule. - Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment. - Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks. - Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring. - Created scripts for resource import and usage validation across non-US regions. - Added tests for CCIP error handling and integration to ensure robust functionality. - Included various new files and directories for the orchestration portal and deployment scripts.
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
# 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"
|
|
|