Files
smom-dbis-138/terraform/terraform.tfvars.example
defiQUG 1fb7266469 Add Oracle Aggregator and CCIP Integration
- 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.
2025-12-12 14:57:48 -08:00

56 lines
1.5 KiB
Plaintext

# Example Terraform variables for DeFi Oracle Meta Mainnet (ChainID 138)
#
# For Well-Architected Framework deployment, see terraform/well-architected/terraform.tfvars.example
# For legacy single resource group deployment, use this file
# Environment
environment = "prod" # Options: prod, dev, test, staging
# Azure Configuration
location = "westeurope"
# Cluster Configuration
cluster_name = "defi-oracle-aks"
kubernetes_version = "1.28"
# Node Configuration
node_count = {
system = 3
validators = 4
sentries = 3
rpc = 3
}
vm_size = {
system = "Standard_D2s_v3"
validators = "Standard_D4s_v3"
sentries = "Standard_D4s_v3"
rpc = "Standard_D8s_v3"
}
# Resource Group Configuration
# Legacy single resource group deployment
resource_group_name = "defi-oracle-mainnet-rg"
# Well-Architected Framework deployment (set use_well_architected = true)
use_well_architected = false
# If using Well-Architected Framework, specify resource group names:
# network_resource_group_name = "rg-prod-network-001"
# compute_resource_group_name = "rg-prod-compute-001"
# storage_resource_group_name = "rg-prod-storage-001"
# security_resource_group_name = "rg-prod-security-001"
# Key Vault Configuration
key_vault_name = "kv-prod-secrets-001"
# Tags
tags = {
Environment = "production"
Project = "DeFi Oracle Meta Mainnet"
ChainID = "138"
ManagedBy = "Terraform"
CostCenter = "Blockchain"
Owner = "DevOps Team"
}