We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b76fe6d commit 98ee61eCopy full SHA for 98ee61e
values.yaml
@@ -942,8 +942,8 @@ default_datastore_crypto_key:
942
# randBytes returns a base64 encoded string.
943
hmacKey:
944
# this formula is based on an st2-specific version of python's base64.urlsafe_b64encode.
945
- hmacKeyString: "{{ randBytes 32 | replace '+' '-' | replace '_' '/' | replace '=' '' }}"
+ hmacKeyString: '{{ randBytes 32 | replace "+" "-" | replace "_" "/" | replace "=" "" }}'
946
size: 256
947
- aesKeyString: "{{ randBytes 32 | replace '+' '-' | replace '_' '/' | replace '=' '' }}"
+ aesKeyString: '{{ randBytes 32 | replace "+" "-" | replace "_" "/" | replace "=" "" }}'
948
mode: CBC
949
0 commit comments