Prefer https:// links in the docs site (#75121)

This is a follow-up of previous years' 1a11cec and c8315bf. It deals
with links which at that point presumably either were not present or
did not support https://
pull/75188/head
Andreas Olsson 3 years ago committed by GitHub
parent f176cc1eda
commit 2eb9921b19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -111,5 +111,5 @@ If you have any questions or content you would like to share, please reach out t
Read past issues `here <https://github.com/ansible/community/wiki/News>`_.
`Subscribe <http://eepurl.com/gZmiEP>`_ to receive it.
`Subscribe <https://eepurl.com/gZmiEP>`_ to receive it.

@ -31,7 +31,7 @@ To contribute a module to most Ansible collections, you must:
Additional requirements may apply for certain collections. Review the individual collection repositories for more information.
Please make sure your module meets these requirements before you submit your PR/proposal. If you have questions, reach out via ``#ansible-devel``, Ansible's IRC chat channel on `irc.libera.chat <http://libera.chat>`_ or the `Ansible development mailing list <https://groups.google.com/group/ansible-devel>`_.
Please make sure your module meets these requirements before you submit your PR/proposal. If you have questions, reach out via ``#ansible-devel``, Ansible's IRC chat channel on `irc.libera.chat <https://libera.chat>`_ or the `Ansible development mailing list <https://groups.google.com/group/ansible-devel>`_.
Contributing to Ansible: subjective requirements
================================================

@ -348,7 +348,7 @@ Below are the contents of the :file:`webserver.yml` file:
- src: https://github.com/bennojoy/nginx
# from Bitbucket
- src: git+http://bitbucket.org/willthames/git-ansible-galaxy
- src: git+https://bitbucket.org/willthames/git-ansible-galaxy
version: v1.4
The following shows the contents of the :file:`requirements.yml` file that now includes the :file:`webserver.yml` file:

@ -73,7 +73,7 @@ Here's an example of using the URI module to make sure a web service returns::
tasks:
- action: uri url=http://www.example.com return_content=yes
- action: uri url=https://www.example.com return_content=yes
register: webpage
- fail:

@ -688,7 +688,7 @@ To select a single element or a data subset from a complex data structure in JSO
This filter has migrated to the `community.general <https://galaxy.ansible.com/community/general>`_ collection. Follow the installation instructions to install that collection.
.. note:: You must manually install the **jmespath** dependency on the Ansible controller before using this filter. This filter is built upon **jmespath**, and you can use the same syntax. For examples, see `jmespath examples <http://jmespath.org/examples.html>`_.
.. note:: You must manually install the **jmespath** dependency on the Ansible controller before using this filter. This filter is built upon **jmespath**, and you can use the same syntax. For examples, see `jmespath examples <https://jmespath.org/examples.html>`_.
Consider this data structure::

@ -40,12 +40,12 @@ Testing strings
To match strings against a substring or a regular expression, use the ``match``, ``search`` or ``regex`` tests::
vars:
url: "http://example.com/users/foo/resources/bar"
url: "https://example.com/users/foo/resources/bar"
tasks:
- debug:
msg: "matched pattern 1"
when: url is match("http://example.com/users/.*/resources/")
when: url is match("https://example.com/users/.*/resources/")
- debug:
msg: "matched pattern 2"

Loading…
Cancel
Save