I'm trying to create instances using openstacksdk python api everything is ok but even when i use:
conn2 = conn.connect_as_project(proj.name)
server = conn2.create_server(......)
the server is being created under property of admin project, not the project mentioned in proj.name I even tried project.id but didn't worked.
I did this just fine...the only difference is that the project is a new project and I have to give credentials to the user I was using.
It was something like that:
After that, anything created (servers, keypairs, networks, etc) is under the new project.