terraform-portainer/docker-portainer-ui/output.tf
2024-06-21 17:52:01 +02:00

9 lines
252 B
HCL

output "portainer" {
value = {
credentials = {
username = "admin" # Sorry, this is hardcoded in the portainer image
password = nonsensitive(random_password.password.result)
}
service_name = docker_service.portainer.name
}
}