|
|
|
@ -17,7 +17,7 @@ DOCUMENTATION = '''
|
|
|
|
|
---
|
|
|
|
|
module: azure_rm_containerregistry_facts
|
|
|
|
|
version_added: "2.7"
|
|
|
|
|
short_description: Get Azure Container Registry facts.
|
|
|
|
|
short_description: Get Azure Container Registry facts
|
|
|
|
|
description:
|
|
|
|
|
- Get facts for Container Registry.
|
|
|
|
|
|
|
|
|
@ -59,7 +59,8 @@ EXAMPLES = '''
|
|
|
|
|
|
|
|
|
|
RETURN = '''
|
|
|
|
|
registries:
|
|
|
|
|
description: A list of dictionaries containing facts for registries.
|
|
|
|
|
description:
|
|
|
|
|
- A list of dictionaries containing facts for registries.
|
|
|
|
|
returned: always
|
|
|
|
|
type: complex
|
|
|
|
|
contains:
|
|
|
|
@ -93,10 +94,10 @@ registries:
|
|
|
|
|
- The SKU name of the container registry.
|
|
|
|
|
returned: always
|
|
|
|
|
type: str
|
|
|
|
|
sample: classic
|
|
|
|
|
sample: Premium
|
|
|
|
|
provisioning_state:
|
|
|
|
|
description:
|
|
|
|
|
- Provisioning state of the container registry
|
|
|
|
|
- Provisioning state of the container registry.
|
|
|
|
|
returned: always
|
|
|
|
|
type: str
|
|
|
|
|
sample: Succeeded
|
|
|
|
@ -108,7 +109,7 @@ registries:
|
|
|
|
|
sample: acrd08521b.azurecr.io
|
|
|
|
|
credentials:
|
|
|
|
|
description:
|
|
|
|
|
- Credentials, fields will be empty if admin user is not enabled for ACR
|
|
|
|
|
- Credentials, fields will be empty if admin user is not enabled for ACR.
|
|
|
|
|
return: when C(retrieve_credentials) is set and C(admin_user_enabled) is set on ACR
|
|
|
|
|
type: complex
|
|
|
|
|
contains:
|
|
|
|
@ -120,18 +121,19 @@ registries:
|
|
|
|
|
sample: zim
|
|
|
|
|
password:
|
|
|
|
|
description:
|
|
|
|
|
- password value
|
|
|
|
|
- password value.
|
|
|
|
|
returned: when registry exists and C(admin_user_enabled) is set
|
|
|
|
|
type: str
|
|
|
|
|
sample: pass1value
|
|
|
|
|
password2:
|
|
|
|
|
description:
|
|
|
|
|
- password2 value
|
|
|
|
|
- password2 value.
|
|
|
|
|
returned: when registry exists and C(admin_user_enabled) is set
|
|
|
|
|
type: str
|
|
|
|
|
sample: pass2value
|
|
|
|
|
tags:
|
|
|
|
|
description: Tags assigned to the resource. Dictionary of string:string pairs.
|
|
|
|
|
description:
|
|
|
|
|
- Tags assigned to the resource. Dictionary of string:string pairs.
|
|
|
|
|
type: dict
|
|
|
|
|
sample: { "tag1": "abc" }
|
|
|
|
|
'''
|
|
|
|
|