This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Purpose: reset docker environment | |
| # Argument (optional): all | |
| # | |
| # "docker-reset" will kill and remove all containers (except dinghy-http-proxy), | |
| # dangling images, and volumes. It won't remove networks. | |
| # | |
| # "docker-reset all" will do everything in 'docker-reset' and remove all | |
| # networks, too. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resource "random_password" "db_master_pass" { | |
| length = 40 | |
| special = true | |
| min_special = 5 | |
| override_special = "!#$%^&*()-_=+[]{}<>:?" | |
| keepers = { | |
| pass_version = 1 | |
| } | |
| } |
OlderNewer