Skip to content

Commit 4581829

Browse files
committed
test: Allow outbound requests to release-assets.githubusercontent.com.
1 parent 31eafb0 commit 4581829

File tree

9 files changed

+17
-16
lines changed

9 files changed

+17
-16
lines changed

.github/workflows/terratest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
proxy.golang.org:443
4747
registry.npmjs.org:443
4848
rekor.sigstore.dev:443
49+
release-assets.githubusercontent.com
4950
releases.hashicorp.com:443
5051
storage.googleapis.com:443
5152
sum.golang.org:443

docs/data-sources/hash_argon2id.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Argon2id hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
Time = 1
99
Memory = 64 MB
1010
Threads = All
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashArgon2id() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashArgon2id Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/data-sources/hash_argon2id_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Argon2id hash of a string with its associated salt value. Returns a Base64
66
value instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
Time = 1
1010
Memory = 64 MB
1111
Threads = All
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.Base64HashArgon2id() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#Base64HashArgon2id Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

docs/data-sources/hash_scrypt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Scrypt hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
N = 32768 (CPU/memory cost parameter)
99
r = 8 (block size parameter)
1010
p = 1 (parallelization parameter)
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashScrypt() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScrypt Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/data-sources/hash_scrypt_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Scrypt hash of a string with its associated salt value. Returns a Base64 value
66
instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
N = 32768 (CPU/memory cost parameter)
1010
r = 8 (block size parameter)
1111
p = 1 (parallelization parameter)
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.HashScryptBase64() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScryptBase64 Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

docs/functions/hash_argon2id.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Argon2id hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
Time = 1
99
Memory = 64 MB
1010
Threads = All
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashArgon2id() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashArgon2id Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/functions/hash_argon2id_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Argon2id hash of a string with its associated salt value. Returns a Base64
66
value instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
Time = 1
1010
Memory = 64 MB
1111
Threads = All
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.HashArgon2idBase64() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashArgon2idBase64 Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

docs/functions/hash_scrypt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Scrypt hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
N = 32768 (CPU/memory cost parameter)
99
r = 8 (block size parameter)
1010
p = 1 (parallelization parameter)
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashScrypt() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScrypt Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/functions/hash_scrypt_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Scrypt hash of a string with its associated salt value. Returns a Base64 value
66
instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
N = 32768 (CPU/memory cost parameter)
1010
r = 8 (block size parameter)
1111
p = 1 (parallelization parameter)
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.HashScryptBase64() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScryptBase64 Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

0 commit comments

Comments
 (0)