From 6ee0ea615f81d7cfb1ad57a39710ff903b497f01 Mon Sep 17 00:00:00 2001 From: markramach Date: Tue, 17 Jan 2017 10:21:13 -0600 Subject: [PATCH 1/3] incorrect api endpoint --- clc_ansible_module/clc_meta.py | 2 +- clc_ansible_module/clc_meta_fact.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clc_ansible_module/clc_meta.py b/clc_ansible_module/clc_meta.py index 38be707..42b90f5 100644 --- a/clc_ansible_module/clc_meta.py +++ b/clc_ansible_module/clc_meta.py @@ -31,7 +31,7 @@ def _set_clc_credentials_from_env(self): v2_api_passwd = env.get('CLC_V2_API_PASSWD', False) clc_alias = env.get('CLC_ACCT_ALIAS', False) self.api_url = env.get('CLC_V2_API_URL', 'https://api.ctl.io') - self.meta_api_url = env.get('META_API_URL', 'https://api.runner.io') + self.meta_api_url = env.get('META_API_URL', 'https://api.runner.ctl.io') if v2_api_token and clc_alias: diff --git a/clc_ansible_module/clc_meta_fact.py b/clc_ansible_module/clc_meta_fact.py index 0284c1f..ead083d 100644 --- a/clc_ansible_module/clc_meta_fact.py +++ b/clc_ansible_module/clc_meta_fact.py @@ -31,7 +31,7 @@ def _set_clc_credentials_from_env(self): v2_api_passwd = env.get('CLC_V2_API_PASSWD', False) clc_alias = env.get('CLC_ACCT_ALIAS', False) self.api_url = env.get('CLC_V2_API_URL', 'https://api.ctl.io') - self.meta_api_url = env.get('META_API_URL', 'https://api.runner.io') + self.meta_api_url = env.get('META_API_URL', 'https://api.runner.ctl.io') if v2_api_token and clc_alias: From c009f200f898338d38dde97bbeb7de1886d3787e Mon Sep 17 00:00:00 2001 From: markramach Date: Tue, 17 Jan 2017 10:21:52 -0600 Subject: [PATCH 2/3] Revert "incorrect api endpoint" This reverts commit 6ee0ea615f81d7cfb1ad57a39710ff903b497f01. --- clc_ansible_module/clc_meta.py | 2 +- clc_ansible_module/clc_meta_fact.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clc_ansible_module/clc_meta.py b/clc_ansible_module/clc_meta.py index 42b90f5..38be707 100644 --- a/clc_ansible_module/clc_meta.py +++ b/clc_ansible_module/clc_meta.py @@ -31,7 +31,7 @@ def _set_clc_credentials_from_env(self): v2_api_passwd = env.get('CLC_V2_API_PASSWD', False) clc_alias = env.get('CLC_ACCT_ALIAS', False) self.api_url = env.get('CLC_V2_API_URL', 'https://api.ctl.io') - self.meta_api_url = env.get('META_API_URL', 'https://api.runner.ctl.io') + self.meta_api_url = env.get('META_API_URL', 'https://api.runner.io') if v2_api_token and clc_alias: diff --git a/clc_ansible_module/clc_meta_fact.py b/clc_ansible_module/clc_meta_fact.py index ead083d..0284c1f 100644 --- a/clc_ansible_module/clc_meta_fact.py +++ b/clc_ansible_module/clc_meta_fact.py @@ -31,7 +31,7 @@ def _set_clc_credentials_from_env(self): v2_api_passwd = env.get('CLC_V2_API_PASSWD', False) clc_alias = env.get('CLC_ACCT_ALIAS', False) self.api_url = env.get('CLC_V2_API_URL', 'https://api.ctl.io') - self.meta_api_url = env.get('META_API_URL', 'https://api.runner.ctl.io') + self.meta_api_url = env.get('META_API_URL', 'https://api.runner.io') if v2_api_token and clc_alias: From c44b192d2cb6cdf9bc479a223ff5c221e92398a7 Mon Sep 17 00:00:00 2001 From: Mark Ramach Date: Fri, 3 Feb 2017 08:09:44 -0600 Subject: [PATCH 3/3] version bump --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9d6d755..c50698d 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='clc-ansible-module', - version='1.1.19', + version='1.1.20', description='Centurylink Cloud Ansible Modules', author='CenturyLink Cloud', author_email='WFAAS-LLFT@centurylink.com',