Module openstack_sdk::auth::v3applicationcredential

source ·
Expand description

Helper methods to deal with OpenStack authentication with Application Credentials

Authorization using Application Credentials look like:

With ID and Secret

{
   "auth": {
       "identity": {
           "methods": [
               "application_credential"
           ],
           "application_credential": {
               "id": "423f19a4ac1e4f48bbb4180756e6eb6c",
               "secret": "rEaqvJka48mpv"
           }
       }
   }
}

With Name and Secret and user information

{
    "auth": {
        "identity": {
            "methods": [
                "application_credential"
            ],
            "application_credential": {
                "name": "monitoring",
                "secret": "rEaqvJka48mpv",
                "user": {
                    "id": "423f19a4ac1e4f48bbb4180756e6eb6c"
                }
            }
        }
    }
}

Enums§

Functions§