- 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.
40 lines
1018 B
HCL
40 lines
1018 B
HCL
# Outputs for GCP Module
|
|
|
|
output "vpc_id" {
|
|
value = google_compute_network.main.id
|
|
description = "VPC network ID"
|
|
}
|
|
|
|
output "cluster_name" {
|
|
value = google_container_cluster.main.name
|
|
description = "GKE cluster name"
|
|
}
|
|
|
|
output "cluster_endpoint" {
|
|
value = google_container_cluster.main.endpoint
|
|
description = "GKE cluster endpoint"
|
|
sensitive = true
|
|
}
|
|
|
|
output "cluster_ca_certificate" {
|
|
value = google_container_cluster.main.master_auth[0].cluster_ca_certificate
|
|
description = "GKE cluster CA certificate"
|
|
sensitive = true
|
|
}
|
|
|
|
output "subnet_ids" {
|
|
value = {
|
|
gke = [for s in google_compute_subnetwork.gke : s.id]
|
|
validators = [for s in google_compute_subnetwork.validators : s.id]
|
|
rpc = [for s in google_compute_subnetwork.rpc : s.id]
|
|
}
|
|
description = "Subnet IDs by type"
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = null # Will be generated by external data source or script
|
|
description = "Kubeconfig for the cluster"
|
|
sensitive = true
|
|
}
|
|
|