fusionauth-issues icon indicating copy to clipboard operation
fusionauth-issues copied to clipboard

[Bug]: Kickstart doesn't allow variable replacements for numeric values

Open voidmain opened this issue 3 weeks ago • 0 comments

What happened?

If you have a variable defined in a Kickstart file that is a numeric value, FusionAuth explodes when parsing the JSON. Here's a simple example:

{
  "variables": {
    "number": 42
  },
  "requests": [
    {
      "method": "POST",
      "url": "/foo/bar",
      "body": {
        "key": {
          "someProperty": #{number}
        }
      }
    }
  ]
}

Version

1.62.0

Affects Versions

All

Alternatives / Workarounds

None.

voidmain avatar Dec 17 '25 22:12 voidmain