1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! External Tools Integration - Application-Specific Configuration
//!
//! This module contains application-specific configuration and template rendering
//! for external CLI tools used in the deployment infrastructure.
//!
//! ## Architecture Note
//!
//! **Generic CLI Adapters** (thin wrappers for external tools) have been moved to
//! `crate::adapters`. This module now contains only **application-specific logic**
//! such as template rendering and context management.
//!
//! - **`crate::adapters`**: Generic CLI tool wrappers (reusable across projects)
//! - **This module**: Application-specific tool configuration and templates
//!
//! ## Components
//!
//! - `ansible` - Ansible configuration management integration
//! - `template` - Template renderers for Ansible inventory and playbooks
//! - `caddy` - Caddy TLS termination proxy configuration
//! - `template` - Template renderers for Caddyfile configuration
//! - `docker_compose` - Docker Compose file management
//! - `file_manager` - File manager for Docker Compose configuration files
//! - `tofu` - `OpenTofu` infrastructure provisioning integration
//! - `template` - Template renderers for `OpenTofu` configuration files
//! - `tracker` - Torrust Tracker configuration management
//! - `template` - Template renderers for Tracker configuration files
//! - `prometheus` - Prometheus metrics collection configuration
//! - `template` - Template renderers for Prometheus configuration files
//! - `grafana` - Grafana metrics visualization configuration
//! - `template` - Template renderers for Grafana provisioning files
//! - `backup` - Backup configuration management
//! - `template` - Template renderers for backup configuration files
//!
//! ## Template Rendering
//!
//! Each tool module provides template renderers that:
//! - Generate tool-specific configuration files from `.tera` templates
//! - Manage template contexts with runtime values
//! - Handle template validation and error reporting
pub use TemplateMetadata;