What is the purpose of the %\ in the following URL?
http://controller:8774/v2/%\(tenant_id\)s
I'm very new with Linux but i understand that the forward slash \ is often used as an escape character. I also know that the % symbol is used as an escape character in URL encoding. Not sure how the combination of %\ works?
It is used to create an OpenStack nova API. The exact command is
openstack endpoint create --region RegionOne \
compute public http://controller:8774/v2/%\(tenant_id\)s
Any guidance would be greatly appreciated.