Complete rewrite of the module to deploy a Renovate bot for automated dependency management with Gitea integration. Breaking Changes: - Module purpose changed from Ansible EDA to Renovate bot - All variables restructured for Renovate configuration - State file path updated to home/docker/renovate/renovate.tfstate - Volumes changed from EDA rulebooks/logs to config/cache - Container image now uses renovate/renovate:latest Added: - Gitea platform integration with token authentication - Renovate configuration template (config.js.tpl) - Repository configuration examples - Gitea Actions workflow examples - SonarQube integration examples - Comprehensive documentation (README, QUICKSTART, MIGRATION_GUIDE) - CHANGELOG.md for version tracking - Security best practices Removed: - All Ansible EDA-specific configuration - Traefik labels (not needed for Renovate) - Old EDA documentation files - example-rulebook.yml Updated: - Complete README with Gitea setup instructions - terraform.tfvars with Renovate configuration - All resource names from ansible_eda to renovate - Backend state path This is version 2.0.0 - not backward compatible with previous EDA version. See MIGRATION_GUIDE.md for detailed migration instructions.
32 lines
811 B
HCL
32 lines
811 B
HCL
# Purpose: This file outputs useful information about the Renovate deployment
|
|
|
|
output "container_id" {
|
|
description = "ID of the Renovate container"
|
|
value = docker_container.renovate.id
|
|
}
|
|
|
|
output "container_name" {
|
|
description = "Name of the Renovate container"
|
|
value = docker_container.renovate.name
|
|
}
|
|
|
|
output "config_volume" {
|
|
description = "Name of the config volume"
|
|
value = docker_volume.renovate_config.name
|
|
}
|
|
|
|
output "cache_volume" {
|
|
description = "Name of the cache volume"
|
|
value = docker_volume.renovate_cache.name
|
|
}
|
|
|
|
output "renovate_platform" {
|
|
description = "Platform configured for Renovate"
|
|
value = var.renovate_platform
|
|
}
|
|
|
|
output "renovate_endpoint" {
|
|
description = "API endpoint configured for Renovate"
|
|
value = var.renovate_endpoint
|
|
}
|