- Add comprehensive database migrations (001-024) for schema evolution - Enhance API schema with expanded type definitions and resolvers - Add new middleware: audit logging, rate limiting, MFA enforcement, security, tenant auth - Implement new services: AI optimization, billing, blockchain, compliance, marketplace - Add adapter layer for cloud integrations (Cloudflare, Kubernetes, Proxmox, storage) - Update Crossplane provider with enhanced VM management capabilities - Add comprehensive test suite for API endpoints and services - Update frontend components with improved GraphQL subscriptions and real-time updates - Enhance security configurations and headers (CSP, CORS, etc.) - Update documentation and configuration files - Add new CI/CD workflows and validation scripts - Implement design system improvements and UI enhancements
41 lines
916 B
HCL
41 lines
916 B
HCL
variable "cloudflare_api_token" {
|
|
description = "Cloudflare API token with appropriate permissions"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "zone_id" {
|
|
description = "Cloudflare Zone ID for sankofa.nexus"
|
|
type = string
|
|
}
|
|
|
|
variable "account_id" {
|
|
description = "Cloudflare Account ID"
|
|
type = string
|
|
}
|
|
|
|
variable "tunnel_secret_control_plane" {
|
|
description = "Secret for control plane tunnel (generate with: openssl rand -base64 32)"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "tunnel_secret_site_1" {
|
|
description = "Secret for Proxmox site 1 tunnel"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "tunnel_secret_site_2" {
|
|
description = "Secret for Proxmox site 2 tunnel"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "tunnel_secret_site_3" {
|
|
description = "Secret for Proxmox site 3 tunnel"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|