diff --git a/libraclient/clientoptions.py b/libraclient/clientoptions.py index c8856a0..bb70a7d 100644 --- a/libraclient/clientoptions.py +++ b/libraclient/clientoptions.py @@ -26,35 +26,30 @@ class ClientOptions(object): self.options.add_argument( '--os_auth_url', metavar='', - required=True, default=utils.env('OS_AUTH_URL', 'LIBRA_URL'), help='Authentication URL' ) self.options.add_argument( '--os_username', metavar='', - required=True, default=utils.env('OS_USERNAME', 'LIBRA_USERNAME'), help='Authentication username' ) self.options.add_argument( '--os_password', metavar='', - required=True, default=utils.env('OS_PASSWORD', 'LIBRA_PASSWORD'), help='Authentication password' ) self.options.add_argument( '--os_tenant_name', metavar='', - required=True, default=utils.env('OS_TENANT_NAME', 'LIBRA_PROJECT_ID'), help='Authentication tenant' ) self.options.add_argument( '--os_region_name', metavar='', - required=True, default=utils.env('OS_REGION_NAME', 'LIBRAL_REGION_NAME'), help='Authentication region' )