- 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.
49 lines
1.0 KiB
HCL
49 lines
1.0 KiB
HCL
output "vnet_id" {
|
|
value = azurerm_virtual_network.main.id
|
|
}
|
|
|
|
output "aks_subnet_id" {
|
|
value = azurerm_subnet.aks.id
|
|
}
|
|
|
|
output "node_subnet_id" {
|
|
value = azurerm_subnet.aks.id
|
|
}
|
|
|
|
output "validators_subnet_id" {
|
|
value = azurerm_subnet.validators.id
|
|
}
|
|
|
|
output "sentries_subnet_id" {
|
|
value = azurerm_subnet.sentries.id
|
|
}
|
|
|
|
output "rpc_subnet_id" {
|
|
value = azurerm_subnet.rpc.id
|
|
}
|
|
|
|
output "application_gateway_id" {
|
|
value = azurerm_application_gateway.main.id
|
|
}
|
|
|
|
output "application_gateway_fqdn" {
|
|
value = azurerm_public_ip.appgateway.fqdn
|
|
description = "FQDN of the Application Gateway public IP"
|
|
}
|
|
|
|
output "validators_nsg_id" {
|
|
value = azurerm_network_security_group.validators.id
|
|
description = "Network Security Group ID for validators"
|
|
}
|
|
|
|
output "sentries_nsg_id" {
|
|
value = azurerm_network_security_group.sentries.id
|
|
description = "Network Security Group ID for sentries"
|
|
}
|
|
|
|
output "rpc_nsg_id" {
|
|
value = azurerm_network_security_group.rpc.id
|
|
description = "Network Security Group ID for RPC nodes"
|
|
}
|
|
|