Skip to content

Commit 106a5a3

Browse files
authored
Merge pull request #48 from Vizzuality/chore/bump-jwt-secrets-to-256-bits
bump jwt secrets to 256 bits
2 parents 171a517 + 9f7a5c1 commit 106a5a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

infrastructure/base/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ resource "random_password" "staging_api_token_salt" {
7070
}
7171

7272
resource "random_password" "staging_admin_jwt_secret" {
73-
length = 32
73+
length = 41
7474
special = true
7575
override_special = "!#%&*()-_=+[]{}<>:?"
7676
}
@@ -82,7 +82,7 @@ resource "random_password" "staging_transfer_token_salt" {
8282
}
8383

8484
resource "random_password" "staging_jwt_secret" {
85-
length = 32
85+
length = 41
8686
special = true
8787
override_special = "!#%&*()-_=+[]{}<>:?"
8888
}
@@ -111,7 +111,7 @@ resource "random_password" "production_api_token_salt" {
111111
}
112112

113113
resource "random_password" "production_admin_jwt_secret" {
114-
length = 32
114+
length = 41
115115
special = true
116116
override_special = "!#%&*()-_=+[]{}<>:?"
117117
}
@@ -123,7 +123,7 @@ resource "random_password" "production_transfer_token_salt" {
123123
}
124124

125125
resource "random_password" "production_jwt_secret" {
126-
length = 32
126+
length = 41
127127
special = true
128128
override_special = "!#%&*()-_=+[]{}<>:?"
129129
}

0 commit comments

Comments
 (0)