STRING_SHORTHAND='String for all envs encrypted with env key or fallback key'
INT_SHORTHAND=1337
FLOAT_SHORTHAND=13.37
KV_SHORTHAND='{"key": "value"}'
STRING_LIST_SHORTHAND="['test1', 'test2']"
INT_LIST_SHORTHAND="[1, 2, 3, 4]"
STRING_SHORTHAND_WITH_EXPLICIT_KEY='Encrypted with test key'
UNENCRYPTED_STRING_SHORTHAND="This shouldn't be encrypted for all envs"
STRING_PER_ENV=local
INT_PER_ENV=1
INT_LIST_PER_ENV="[1, 2, 3]"
FLOAT_PER_ENV=1.1
STRINGS_PER_ENV_PROD_UNENCRYPTED='This should be encrypted with local key'
INTEGER_PER_VALUE_WITH_EXPLICIT_KEY=1
STRING_TEMPLATING_SHORTHAND='Encrypted with test key (local)'
STRING_TEMPLATING_PER_ENV='String for all envs encrypted with env key or fallback key local'
STRING_LIST_TEMPLATING_SHORTHAND="[1, 1337, '{'key': 'value'}', 'Encrypted with test key', 'local']"
MULTILINE_KV_PER_ENV='{
  "key1": "value1",
  "key2": "value2"
}'
MULTILINE_KV_FOR_SOME_ENVS_WITH_EPXLICIT_KEY='{
  "key1": "value1",
  "key2": "value2"
}'
