9 lines
252 B
HCL
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
|
|
}
|
|
}
|