summaryrefslogtreecommitdiffstats
path: root/contrib/inventory
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-06-18 14:22:50 +0200
committerRyan Brown <sb@ryansb.com>2018-06-18 14:22:50 +0200
commitbf304832ffb8fc723c4d2f755e2e45ba17809f73 (patch)
treed4fbb4c5bb49f944b8923e0afd4a97d92f6591ff /contrib/inventory
parentread scaleway option after the options have been set (#41259) (diff)
downloadansible-bf304832ffb8fc723c4d2f755e2e45ba17809f73.tar.xz
ansible-bf304832ffb8fc723c4d2f755e2e45ba17809f73.zip
Prefer readthedocs.io instead of readthedocs.org for doc links (#41537)
Read the Docs moved hosting to readthedocs.io instead of readthedocs.org. Fix all links in the project. For additional details, see: https://blog.readthedocs.com/securing-subdomains/ > Starting today, Read the Docs will start hosting projects from > subdomains on the domain readthedocs.io, instead of on > readthedocs.org. This change addresses some security concerns around > site cookies while hosting user generated data on the same domain as > our dashboard.
Diffstat (limited to 'contrib/inventory')
-rwxr-xr-xcontrib/inventory/azure_rm.py2
-rwxr-xr-xcontrib/inventory/consul_io.py2
-rwxr-xr-xcontrib/inventory/docker.py2
-rw-r--r--contrib/inventory/ec2.ini2
-rwxr-xr-xcontrib/inventory/softlayer.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/contrib/inventory/azure_rm.py b/contrib/inventory/azure_rm.py
index 60e027619a..59e0b70146 100755
--- a/contrib/inventory/azure_rm.py
+++ b/contrib/inventory/azure_rm.py
@@ -24,7 +24,7 @@ Azure External Inventory Script
===============================
Generates dynamic inventory by making API requests to the Azure Resource
Manager using the Azure Python SDK. For instruction on installing the
-Azure Python SDK see http://azure-sdk-for-python.readthedocs.org/
+Azure Python SDK see https://azure-sdk-for-python.readthedocs.io/
Authentication
--------------
diff --git a/contrib/inventory/consul_io.py b/contrib/inventory/consul_io.py
index 8c311d3321..b7197291fd 100755
--- a/contrib/inventory/consul_io.py
+++ b/contrib/inventory/consul_io.py
@@ -200,7 +200,7 @@ try:
import consul
except ImportError as e:
sys.exit("""failed=True msg='python-consul required for this module.
-See http://python-consul.readthedocs.org/en/latest/#installation'""")
+See https://python-consul.readthedocs.io/en/latest/#installation'""")
from six import iteritems
diff --git a/contrib/inventory/docker.py b/contrib/inventory/docker.py
index 74dba8a1dc..9a41ebe3d4 100755
--- a/contrib/inventory/docker.py
+++ b/contrib/inventory/docker.py
@@ -32,7 +32,7 @@ script contacts can be defined using environment variables or a configuration fi
Requirements
------------
-Using the docker modules requires having docker-py <https://docker-py.readthedocs.org/en/stable/>
+Using the docker modules requires having docker-py <https://docker-py.readthedocs.io/en/stable/>
installed on the host running Ansible. To install docker-py:
pip install docker-py
diff --git a/contrib/inventory/ec2.ini b/contrib/inventory/ec2.ini
index 8637d0ff59..d5e4742032 100644
--- a/contrib/inventory/ec2.ini
+++ b/contrib/inventory/ec2.ini
@@ -196,7 +196,7 @@ stack_filters = False
# iam_role = role-arn
# A boto configuration profile may be used to separate out credentials
-# see http://boto.readthedocs.org/en/latest/boto_config_tut.html
+# see https://boto.readthedocs.io/en/latest/boto_config_tut.html
# boto_profile = some-boto-profile-name
diff --git a/contrib/inventory/softlayer.py b/contrib/inventory/softlayer.py
index 4bece43475..bddb0db6f9 100755
--- a/contrib/inventory/softlayer.py
+++ b/contrib/inventory/softlayer.py
@@ -6,7 +6,7 @@ The SoftLayer Python API client is required. Use `pip install softlayer` to inst
You have a few different options for configuring your username and api_key. You can pass
environment variables (SL_USERNAME and SL_API_KEY). You can also write INI file to
~/.softlayer or /etc/softlayer.conf. For more information see the SL API at:
-- https://softlayer-python.readthedocs.org/en/latest/config_file.html
+- https://softlayer-python.readthedocs.io/en/latest/config_file.html
The SoftLayer Python client has a built in command for saving this configuration file
via the command `sl config setup`.