Patrick de Ruiter b70952d0f7
Some checks failed
Code Quality & Security Scan / TFLint (push) Successful in 18s
Code Quality & Security Scan / Terraform Destroy (push) Has been skipped
Code Quality & Security Scan / Tfsec Security Scan (push) Successful in 29s
Code Quality & Security Scan / Checkov Security Scan (push) Successful in 39s
Code Quality & Security Scan / Terraform Validate (push) Successful in 38s
Code Quality & Security Scan / SonarQube Scan (push) Successful in 42s
Code Quality & Security Scan / Terraform Plan (push) Failing after 53s
Code Quality & Security Scan / Terraform Apply (push) Has been skipped
Fixed outputs.tf and main.tf replaced variable with data statement from vault
2025-11-19 00:29:25 +01:00

32 lines
889 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 = data.vault_generic_secret.renovate.data["renovate_platform"]
}
output "renovate_endpoint" {
description = "API endpoint configured for Renovate"
value = data.vault_generic_secret.renovate.data["renovate_endpoint"]
}