- 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.
32 lines
945 B
HCL
32 lines
945 B
HCL
# Outputs for On-Prem HCI Module
|
|
|
|
output "cluster_name" {
|
|
value = local.hci_platform == "azure-stack-hci" ? (
|
|
try(azapi_resource.azure_stack_hci_cluster[0].name, "${local.name_prefix}-hci")
|
|
) : (
|
|
"${local.name_prefix}-hci"
|
|
)
|
|
description = "HCI cluster name"
|
|
}
|
|
|
|
output "region" {
|
|
value = try(var.environment_config.region, "onprem")
|
|
description = "Region/location identifier"
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = null # Will be generated by external script or Arc agent
|
|
description = "Kubeconfig for the cluster"
|
|
sensitive = true
|
|
}
|
|
|
|
output "vm_ips" {
|
|
value = local.hci_platform == "vsphere" ? {
|
|
system = [for vm in vsphere_virtual_machine.system : vm.default_ip_address]
|
|
validators = [for vm in vsphere_virtual_machine.validators : vm.default_ip_address]
|
|
rpc = [for vm in vsphere_virtual_machine.rpc : vm.default_ip_address]
|
|
} : {}
|
|
description = "VM IP addresses (vSphere only)"
|
|
}
|
|
|