Hello,
I’m trying to create a network in a project, but the operation fails
$ lxc --version
4.24
$ lxc project create testproject --config features.images=true --config features.profiles=true --config features.storage.volumes=true --config features.networks=true
$ lxc project switch testproject
$ lxc project list
+-----------------------+--------+----------+-----------------+----------+---------------------+---------+
| NAME | IMAGES | PROFILES | STORAGE VOLUMES | NETWORKS | DESCRIPTION | USED BY |
+-----------------------+--------+----------+-----------------+----------+---------------------+---------+
| default | YES | YES | YES | YES | Default LXD project | 6 |
+-----------------------+--------+----------+-----------------+----------+---------------------+---------+
| testproject (current) | YES | YES | YES | YES | | 2 |
+-----------------------+--------+----------+-----------------+----------+---------------------+---------+
$ lxc network create aaa
Error: Option "network" is required
$ lxc network create aaa --project default
Network aaa created
Am I missing something?
Thanks!