fix some broken links (#67345)
This commit is contained in:
parent
4231f34458
commit
a6bb3ae291
7 changed files with 14 additions and 13 deletions
|
@ -118,7 +118,7 @@ When you look into the debug_dir you'll see a directory structure like this::
|
|||
files for any :mod:`ansible.module_utils` imports in the module but not
|
||||
any files from any other module. So if your module uses
|
||||
:mod:`ansible.module_utils.url` Ansible will include it for you, but if
|
||||
your module includes `requests <http://docs.python-requests.org/en/master/api/>`_ then you'll have to make sure that
|
||||
your module includes `requests <https://requests.readthedocs.io/en/master/api/>`_ then you'll have to make sure that
|
||||
the python `requests library <https://pypi.org/project/requests/>`_ is installed on the system before running the
|
||||
module. You can modify files in this directory if you suspect that the
|
||||
module is having a problem in some of this boilerplate code rather than in
|
||||
|
|
|
@ -36,7 +36,7 @@ Next, include it in a playbook, as follows:
|
|||
|
||||
Because the role is referenced, ``hello-world`` is able to access the modules, and use them to deploy an application.
|
||||
|
||||
The modules are found in the ``library`` folder of the role. Each includes full documentation for parameters and the returned data structure. However, not all modules include examples, only those where `testing data <https://github.com/openshift/openshift-restclient-python/tree/master/openshift/ansiblegen/examples>`_ has been created.
|
||||
The modules are found in the ``library`` folder of the role. Each includes full documentation for parameters and the returned data structure. However, not all modules include examples, only those where `testing data <https://github.com/openshift/openshift-restclient-python/tree/release-0.8/openshift/ansiblegen/examples>`_ has been created.
|
||||
|
||||
Authenticating with the API
|
||||
---------------------------
|
||||
|
|
|
@ -226,7 +226,7 @@ resources:
|
|||
- 'URL of the network resource for this firewall rule. If not specified when
|
||||
creating a firewall rule, the default network is used: global/networks/default
|
||||
If you choose to specify this property, you can specify the network as a full
|
||||
or partial URL. For example, the following are all valid URLs: U(https://www.googleapis.com/compute/v1/projects/myproject/global/)
|
||||
or partial URL. For example, the following are all valid URLs: https://www.googleapis.com/compute/v1/projects/myproject/global/
|
||||
networks/my-network projects/myproject/global/networks/my-network global/networks/default
|
||||
.'
|
||||
returned: success
|
||||
|
|
|
@ -153,7 +153,7 @@ resources:
|
|||
for this forwarding rule.
|
||||
- 'An address can be specified either by a literal IP address or a URL reference
|
||||
to an existing Address resource. The following examples are all valid: * 100.1.2.3
|
||||
* U(https://www.googleapis.com/compute/v1/projects/project/regions/region/addresses/address)
|
||||
* https://www.googleapis.com/compute/v1/projects/project/regions/region/addresses/address
|
||||
* projects/project/regions/region/addresses/address * regions/region/addresses/address
|
||||
* global/addresses/address * address .'
|
||||
returned: success
|
||||
|
|
|
@ -146,7 +146,7 @@ resources:
|
|||
for this forwarding rule.
|
||||
- 'An address can be specified either by a literal IP address or a URL reference
|
||||
to an existing Address resource. The following examples are all valid: * 100.1.2.3
|
||||
* U(https://www.googleapis.com/compute/v1/projects/project/regions/region/addresses/address)
|
||||
* https://www.googleapis.com/compute/v1/projects/project/regions/region/addresses/address
|
||||
* projects/project/regions/region/addresses/address * regions/region/addresses/address
|
||||
* global/addresses/address * address .'
|
||||
returned: success
|
||||
|
|
|
@ -156,18 +156,19 @@ resources:
|
|||
nextHopGateway:
|
||||
description:
|
||||
- URL to a gateway that should handle matching packets.
|
||||
- 'Currently, you can only specify the internet gateway, using a full or partial
|
||||
valid URL: * U(https://www.googleapis.com/compute/v1/projects/project/global/gateways/default-internet-gateway)
|
||||
* projects/project/global/gateways/default-internet-gateway * global/gateways/default-internet-gateway
|
||||
.'
|
||||
- 'Currently, you can only specify the internet gateway, using a full or partial valid URL:'
|
||||
- ' * https://www.googleapis.com/compute/v1/projects/project/global/gateways/default-internet-gateway'
|
||||
- ' * projects/project/global/gateways/default-internet-gateway'
|
||||
- ' * global/gateways/default-internet-gateway'
|
||||
returned: success
|
||||
type: str
|
||||
nextHopInstance:
|
||||
description:
|
||||
- URL to an instance that should handle matching packets.
|
||||
- 'You can specify this as a full or partial URL. For example: * U(https://www.googleapis.com/compute/v1/projects/project/zones/zone/)
|
||||
instances/instance * projects/project/zones/zone/instances/instance * zones/zone/instances/instance
|
||||
.'
|
||||
- 'You can specify this as a full or partial URL. For example:'
|
||||
- ' * https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/instance'
|
||||
- ' * projects/project/zones/zone/instances/instance'
|
||||
- ' * zones/zone/instances/instance'
|
||||
returned: success
|
||||
type: dict
|
||||
nextHopIp:
|
||||
|
|
|
@ -67,7 +67,7 @@ options:
|
|||
Please see the examples on how to emulate it with M(openssl_certificate_info), M(openssl_csr_info),
|
||||
M(openssl_privatekey_info) and M(assert).
|
||||
- "The C(entrust) provider was added for Ansible 2.9 and requires credentials for the
|
||||
L(https://www.entrustdatacard.com/products/categories/ssl-certificates,Entrust Certificate Services) (ECS) API."
|
||||
L(Entrust Certificate Services,https://www.entrustdatacard.com/products/categories/ssl-certificates) (ECS) API."
|
||||
- Required if I(state) is C(present).
|
||||
type: str
|
||||
choices: [ acme, assertonly, entrust, ownca, selfsigned ]
|
||||
|
|
Loading…
Reference in a new issue