Adding domain id and name for openstack provider API Keystone v3 (#46695)

This commit is contained in:
juziit 2020-09-15 00:24:22 +02:00 committed by GitHub
parent 3d7a13dba4
commit 2fab7f169f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -69,6 +69,8 @@ export interface OpenstackProviderOptions {
tenantId?: string;
version?: string;
keystoneAuthVersion?: string;
domainId?: string;
domainName?: string;
}
export type RackspaceRegions =

View File

@ -34,7 +34,9 @@ pkgcloud.storage.createClient({
provider: 'openstack',
authUrl: 'http://example.com',
username: 'username',
password: 'password'
password: 'password',
domainId: 'default',
domainName: 'default'
});
// Rackspace