- 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.
55 lines
1.2 KiB
HCL
55 lines
1.2 KiB
HCL
# Cacti Module for Terraform
|
|
# Deploys Hyperledger Cacti on Kubernetes
|
|
|
|
variable "namespace" {
|
|
description = "Kubernetes namespace for Cacti"
|
|
type = string
|
|
default = "cacti"
|
|
}
|
|
|
|
variable "cactus_api_image" {
|
|
description = "Cactus API Docker image"
|
|
type = string
|
|
default = "ghcr.io/hyperledger/cactus-cmd-api-server:v2.0.0"
|
|
}
|
|
|
|
variable "besu_connector_image" {
|
|
description = "Cactus Besu connector Docker image"
|
|
type = string
|
|
default = "ghcr.io/hyperledger/cactus-plugin-ledger-connector-besu:v2.0.0"
|
|
}
|
|
|
|
variable "besu_rpc_url" {
|
|
description = "Besu RPC URL"
|
|
type = string
|
|
}
|
|
|
|
variable "besu_ws_url" {
|
|
description = "Besu WebSocket URL"
|
|
type = string
|
|
}
|
|
|
|
variable "chain_id" {
|
|
description = "Chain ID"
|
|
type = number
|
|
default = 138
|
|
}
|
|
|
|
variable "cactus_api_url" {
|
|
description = "Cactus API URL"
|
|
type = string
|
|
default = "http://cactus-api:4000"
|
|
}
|
|
|
|
# Note: This module would use Kubernetes provider to create resources
|
|
# For Terraform, we'll create the manifests and apply them via kubectl
|
|
|
|
output "cactus_namespace" {
|
|
value = var.namespace
|
|
}
|
|
|
|
output "cactus_api_url" {
|
|
value = var.cactus_api_url
|
|
}
|
|
|