You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi team, there some pwd properties value which start with { character sample Example is {Abs2kd3 getting below error
C:\ACO_DEEPAK\dev\aco-listing-prep\deployment-configuration\profiles\dev>C:\Users\DEEPAK\sops-v3.7.2.exe application.secrets.yaml
[CMD] time="2024-12-13T22:01:45+05:30" level=error msg="Could not load tree, probably due to invalid syntax. Press a key to return to the editor, or Ctrl+C to exit." error="Error unmarshaling input YAML: yaml: line 6: did not find expected ',' or '}'"
while remove { character form password properties then able to generate file could you please help here how it will generate the encrypted file.
application-secret yaml file
SAMPLE_NAME: {ABS22CD // not able to encrypted getting error
SAMPLE_NAME: ABS22CD // successfully encrypted no error
The text was updated successfully, but these errors were encountered:
The { indicates that an inline dictionary is starting. Since you want this to be a string, you should either use quotes or other string indications (see for example https://yaml-multiline.info/), like this:
still not working passward value is {ABS22CD while adding double quote this value thne it looklike '{ABS22CD' thn my password value is {ABS22CD or '{ABS22CD' which value will take
suggest me what to do(url)
they provided the information value is : {ABS22CD
SAMPLE_NAME_1: "{ABS22CD" after adding "" then value decrypted value belwo
SAMPLE_NAME_1: '{ABS22CD' is it will validate as value {ABS22CD .
I think you need to understand how YAML works first. The specification can be found at https://yaml.org/, which is definitely not the best place, but there should be many other resources on the internet that explain how strings can be encoded in YAML.
hi team, there some pwd properties value which start with { character sample Example is {Abs2kd3 getting below error
C:\ACO_DEEPAK\dev\aco-listing-prep\deployment-configuration\profiles\dev>C:\Users\DEEPAK\sops-v3.7.2.exe application.secrets.yaml
[CMD] time="2024-12-13T22:01:45+05:30" level=error msg="Could not load tree, probably due to invalid syntax. Press a key to return to the editor, or Ctrl+C to exit." error="Error unmarshaling input YAML: yaml: line 6: did not find expected ',' or '}'"
while remove { character form password properties then able to generate file could you please help here how it will generate the encrypted file.
application-secret yaml file
SAMPLE_NAME: {ABS22CD // not able to encrypted getting error
SAMPLE_NAME: ABS22CD // successfully encrypted no error
The text was updated successfully, but these errors were encountered: