summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiva Popuri <popuri.siva@gmail.com>2015-10-23 09:34:58 -0500
committerSiva Popuri <popuri.siva@gmail.com>2015-10-23 09:34:58 -0500
commit8b7c3677fdcc4f490aef48591484acce7d46c124 (patch)
tree62742cabfef6d48b384197e66051702fb37e7b09
parente8fe9167d7b7d1d7a9c05a0efdf76ca023ca0815 (diff)
downloadansible-modules-extras-8b7c3677fdcc4f490aef48591484acce7d46c124.tar.gz
added author to module doc string.
-rw-r--r--cloud/centurylink/clc_aa_policy.py1
-rw-r--r--cloud/centurylink/clc_alert_policy.py1
-rw-r--r--cloud/centurylink/clc_blueprint_package.py1
-rw-r--r--cloud/centurylink/clc_firewall_policy.py1
-rw-r--r--cloud/centurylink/clc_group.py1
-rw-r--r--cloud/centurylink/clc_loadbalancer.py29
-rw-r--r--cloud/centurylink/clc_modify_server.py1
-rw-r--r--cloud/centurylink/clc_publicip.py1
-rw-r--r--cloud/centurylink/clc_server.py1
-rw-r--r--cloud/centurylink/clc_server_snapshot.py1
10 files changed, 24 insertions, 14 deletions
diff --git a/cloud/centurylink/clc_aa_policy.py b/cloud/centurylink/clc_aa_policy.py
index 8f4567ea..75966511 100644
--- a/cloud/centurylink/clc_aa_policy.py
+++ b/cloud/centurylink/clc_aa_policy.py
@@ -50,6 +50,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_alert_policy.py b/cloud/centurylink/clc_alert_policy.py
index dcb9d47a..a4f07371 100644
--- a/cloud/centurylink/clc_alert_policy.py
+++ b/cloud/centurylink/clc_alert_policy.py
@@ -76,6 +76,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_blueprint_package.py b/cloud/centurylink/clc_blueprint_package.py
index f39d8c03..2b0a9774 100644
--- a/cloud/centurylink/clc_blueprint_package.py
+++ b/cloud/centurylink/clc_blueprint_package.py
@@ -55,6 +55,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_firewall_policy.py b/cloud/centurylink/clc_firewall_policy.py
index 83d75cbd..5f208bfa 100644
--- a/cloud/centurylink/clc_firewall_policy.py
+++ b/cloud/centurylink/clc_firewall_policy.py
@@ -85,6 +85,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_group.py b/cloud/centurylink/clc_group.py
index 75641689..01fbbe2e 100644
--- a/cloud/centurylink/clc_group.py
+++ b/cloud/centurylink/clc_group.py
@@ -58,6 +58,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_loadbalancer.py b/cloud/centurylink/clc_loadbalancer.py
index 076146c5..7771a7ea 100644
--- a/cloud/centurylink/clc_loadbalancer.py
+++ b/cloud/centurylink/clc_loadbalancer.py
@@ -78,6 +78,21 @@ options:
required: False
default: present
choices: ['present', 'absent', 'port_absent', 'nodes_present', 'nodes_absent']
+requirements:
+ - python = 2.7
+ - requests >= 2.5.0
+ - clc-sdk
+author: "CLC Runner (@clc-runner)"
+notes:
+ - To use this module, it is required to set the below environment variables which enables access to the
+ Centurylink Cloud
+ - CLC_V2_API_USERNAME, the account login id for the centurylink cloud
+ - CLC_V2_API_PASSWORD, the account password for the centurylink cloud
+ - Alternatively, the module accepts the API token and account alias. The API token can be generated using the
+ CLC account login and password via the HTTP api call @ https://api.ctl.io/v2/authentication/login
+ - CLC_V2_API_TOKEN, the API token generated from https://api.ctl.io/v2/authentication/login
+ - CLC_ACCT_ALIAS, the account alias associated with the centurylink cloud
+ - Users can set CLC_V2_API_URL to specify an endpoint for pointing to a different CLC environment.
'''
EXAMPLES = '''
@@ -156,20 +171,6 @@ EXAMPLES = '''
nodes:
- { 'ipAddress': '10.11.22.123', 'privatePort': 80 }
state: absent
-requirements:
- - python = 2.7
- - requests >= 2.5.0
- - clc-sdk
-notes:
- - To use this module, it is required to set the below environment variables which enables access to the
- Centurylink Cloud
- - CLC_V2_API_USERNAME, the account login id for the centurylink cloud
- - CLC_V2_API_PASSWORD, the account password for the centurylink cloud
- - Alternatively, the module accepts the API token and account alias. The API token can be generated using the
- CLC account login and password via the HTTP api call @ https://api.ctl.io/v2/authentication/login
- - CLC_V2_API_TOKEN, the API token generated from https://api.ctl.io/v2/authentication/login
- - CLC_ACCT_ALIAS, the account alias associated with the centurylink cloud
- - Users can set CLC_V2_API_URL to specify an endpoint for pointing to a different CLC environment.
'''
RETURN = '''
diff --git a/cloud/centurylink/clc_modify_server.py b/cloud/centurylink/clc_modify_server.py
index 9683f683..a7ccbaef 100644
--- a/cloud/centurylink/clc_modify_server.py
+++ b/cloud/centurylink/clc_modify_server.py
@@ -80,6 +80,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_publicip.py b/cloud/centurylink/clc_publicip.py
index ab1af0e0..12cfda3c 100644
--- a/cloud/centurylink/clc_publicip.py
+++ b/cloud/centurylink/clc_publicip.py
@@ -58,6 +58,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_server.py b/cloud/centurylink/clc_server.py
index 3202f106..42cd70ae 100644
--- a/cloud/centurylink/clc_server.py
+++ b/cloud/centurylink/clc_server.py
@@ -228,6 +228,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud
diff --git a/cloud/centurylink/clc_server_snapshot.py b/cloud/centurylink/clc_server_snapshot.py
index 603d03ea..6d6963e2 100644
--- a/cloud/centurylink/clc_server_snapshot.py
+++ b/cloud/centurylink/clc_server_snapshot.py
@@ -51,6 +51,7 @@ requirements:
- python = 2.7
- requests >= 2.5.0
- clc-sdk
+author: "CLC Runner (@clc-runner)"
notes:
- To use this module, it is required to set the below environment variables which enables access to the
Centurylink Cloud