From f60e72156010298da29f2391481b973c2c4239d9 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Mon, 18 Aug 2014 05:22:31 -0600 Subject: [PATCH] Change OS_REGION to OS_REGION_NAME Dolph made a comment a while back saying region_name should be region which I did. Talked with Dean about this and he dug his heels in saying it should be region_name. All the CLIs are using region_name. Change-Id: I212eb4ec96a59650226ae5f5b0172c40c25dec90 --- examples/common.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/common.py b/examples/common.py index cb5a6abb..d168b5fd 100755 --- a/examples/common.py +++ b/examples/common.py @@ -28,7 +28,7 @@ Typical environment variables to set and export for authentication include: OS_PASSWORD=nirvana OS_AUTH_URL=https://foofighters.com:35357/v3 OS_USERNAME=davegrohl - OS_REGION=Seattle + OS_REGION_NAME=Seattle """ @@ -142,10 +142,10 @@ def option_parser(): help='Authentication password (Env: OS_PASSWORD)', ) parser.add_argument( - '--os-region', + '--os-region-name', metavar='', - default=env('OS_REGION'), - help='Service region (Env: OS_REGION)') + default=env('OS_REGION_NAME'), + help='Service region (Env: OS_REGION_NAME)') parser.add_argument( '--os-cacert', metavar='',