Volume info does not include state value via flyctl

When i run fly volumes show <id> --json, the output does not include the current volume state.
Here’s an example output:

{
    "id": "vol_xme149k902ovowpl",
    "App": {
        "Name": "superduper",
        "PlatformVersion": ""
    },
    "Name": "foo",
    "SizeGb": 1,
    "Snapshots": {
        "Nodes": null
    },
    "State": "",
    "Region": "ord",
    "Encrypted": true,
    "CreatedAt": "2023-05-27T00:14:08Z",
    "AttachedAllocation": null,
    "AttachedMachine": null,
    "Host": {
        "ID": "b360"
    }
}

However, in UI the state is displayed as created. Is this an expected behavior?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.