Skip to content

Commit

Permalink
Merge pull request #453 from rug-cit-hpc/fix/generate_secrets
Browse files Browse the repository at this point in the history
Adjust characters used in passphrases
  • Loading branch information
pneerincx committed Aug 31, 2021
2 parents 4bab46e + 26a7f60 commit a55451b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_secrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def write_secrets(template_file, secrets_file):
if key == 'cloud_console_pass':
pass_length = 12
data[key] = ''.join(
random.choice(string.ascii_letters + string.digits + '!?@%[]^_+-{}=~.,;:/')
random.choice(string.ascii_letters + string.digits + '!?@%[]^_+{}=~.,:/')
for _ in range(pass_length))
else:
print('INFO: preserving existing value "' + data[key] + '" for key "' + key + '".')
Expand Down

0 comments on commit a55451b

Please sign in to comment.