Olivier Bourdon
Olivier Bourdon
@FernandoMorais & all, just tried this both on my MacOSX and Ubuntu Xenial platforms without any issues: I was able to run `ldapsearch -x -H ldap://localhost -b dc=example,dc=org -D "cn=admin,dc=example,dc=org"...
Sorry was using docker-compose not swarm mode, retrying right now
works with swarm on my linux box `$ docker service ls` `ID NAME MODE REPLICAS IMAGE PORTS` `v7hfbypawi78 ldap_openldap replicated 1/1 osixia/openldap:1.2.0 *:389->389/tcp` `dqalcswnablu ldap_phpldapadmin replicated 1/1 osixia/phpldapadmin:latest *:8092->80/tcp `...
Seems like a regression to me as I remember getting this to work
@sean-abbott @PawelZ-iHQ what version of terraform are you using ? (0.11, 0.12, 0.13) I think it is working well with 0.11 but have the same issue you are mentioning with...
to make sure my code works in all cases, I use expression like: ``` mode = format("%d", "0644") ```
The following code works well with terraform 0.11: ``` variable "v1" { default = 0644 } output "input-v1" { value = "${var.v1}" } ``` which gives: ``` Apply complete! Resources:...
In fact it does not work either with format for TF 0.12 anymore: [https://github.com/hashicorp/terraform/issues/22143](https://github.com/hashicorp/terraform/issues/22143)