10 lines
252 B
Terraform
10 lines
252 B
Terraform
|
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
|
||
|
}
|
||
|
}
|