terraform-portainer/docker-portainer-ui/output.tf

10 lines
252 B
Terraform
Raw Permalink Normal View History

2024-06-21 15:52:01 +00:00
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
}
}