Skip to content

Commit 31ba50f

Browse files
authored
Merge pull request #58 from remerge/DATA-653-fixup
limit special characters to the ones Leaseweb accepts
2 parents ca19a78 + 8656c10 commit 31ba50f

File tree

1 file changed

+3
-2
lines changed
  • leaseweb/server/installation

1 file changed

+3
-2
lines changed

leaseweb/server/installation/main.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
resource "random_password" "main" {
2-
length = 16
3-
special = true
2+
length = 16
3+
special = true
4+
override_special = "@,.^%-_~"
45
}
56

67
resource "leaseweb_dedicated_server_installation" "main" {

0 commit comments

Comments
 (0)