mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
Merge pull request #1243 from t-woerner/ipareplica_ip_addresses_use_for_client
ipareplica: Pass ipareplica_ip_addresses to client deployment part
This commit is contained in:
@@ -190,7 +190,7 @@ Variable | Description | Required
|
|||||||
`ipaservers` | This group with the IPA master full qualified hostnames. (list of strings) | mostly
|
`ipaservers` | This group with the IPA master full qualified hostnames. (list of strings) | mostly
|
||||||
`ipareplicas` | Group of IPA replica hostnames. (list of strings) | yes
|
`ipareplicas` | Group of IPA replica hostnames. (list of strings) | yes
|
||||||
`ipaadmin_password` | The password for the IPA admin user (string) | mostly
|
`ipaadmin_password` | The password for the IPA admin user (string) | mostly
|
||||||
`ipareplica_ip_addresses` | The list of master server IP addresses. (list of strings) | no
|
`ipareplica_ip_addresses` | The list of IPA replica IP addresses. (list of strings) | no
|
||||||
`ipareplica_domain` | The primary DNS domain of an existing IPA deployment. (string) | no
|
`ipareplica_domain` | The primary DNS domain of an existing IPA deployment. (string) | no
|
||||||
`ipaserver_realm` | The Kerberos realm of an existing IPA deployment. (string) | no
|
`ipaserver_realm` | The Kerberos realm of an existing IPA deployment. (string) | no
|
||||||
`ipaserver_hostname` | Fully qualified name of the server. (string) | no
|
`ipaserver_hostname` | Fully qualified name of the server. (string) | no
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ options:
|
|||||||
type: str
|
type: str
|
||||||
required: no
|
required: no
|
||||||
ip_addresses:
|
ip_addresses:
|
||||||
description: List of Master Server IP Addresses
|
description: List of IPA replica IP addresses
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
required: no
|
required: no
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ options:
|
|||||||
type: str
|
type: str
|
||||||
required: no
|
required: no
|
||||||
ip_addresses:
|
ip_addresses:
|
||||||
description: List of Master Server IP Addresses
|
description: List of IPA replica IP addresses
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
required: no
|
required: no
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ options:
|
|||||||
type: str
|
type: str
|
||||||
required: no
|
required: no
|
||||||
ip_addresses:
|
ip_addresses:
|
||||||
description: List of Master Server IP Addresses
|
description: List of IPA replica IP addresses
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
required: no
|
required: no
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ options:
|
|||||||
type: str
|
type: str
|
||||||
required: no
|
required: no
|
||||||
ip_addresses:
|
ip_addresses:
|
||||||
description: List of Master Server IP Addresses
|
description: List of IPA replica IP addresses
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
required: no
|
required: no
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ options:
|
|||||||
type: str
|
type: str
|
||||||
required: no
|
required: no
|
||||||
ip_addresses:
|
ip_addresses:
|
||||||
description: List of Master Server IP Addresses
|
description: List of IPA replica IP addresses
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
required: no
|
required: no
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ short_description: IPA replica deployment tests
|
|||||||
description: IPA replica deployment tests
|
description: IPA replica deployment tests
|
||||||
options:
|
options:
|
||||||
ip_addresses:
|
ip_addresses:
|
||||||
description: List of Master Server IP Addresses
|
description: List of IPA replica IP addresses
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
required: no
|
required: no
|
||||||
|
|||||||
@@ -125,6 +125,7 @@
|
|||||||
ipaclient_realm: "{{ result_ipareplica_test.realm | default(omit) }}"
|
ipaclient_realm: "{{ result_ipareplica_test.realm | default(omit) }}"
|
||||||
ipaclient_servers: "{{ ipareplica_servers | default(omit) }}"
|
ipaclient_servers: "{{ ipareplica_servers | default(omit) }}"
|
||||||
ipaclient_hostname: "{{ result_ipareplica_test.hostname }}"
|
ipaclient_hostname: "{{ result_ipareplica_test.hostname }}"
|
||||||
|
ipaclient_ip_addresses: "{{ ipareplica_ip_addresses | default(omit) }}"
|
||||||
ipaclient_install_packages: "{{ ipareplica_install_packages }}"
|
ipaclient_install_packages: "{{ ipareplica_install_packages }}"
|
||||||
when: not result_ipareplica_test.client_enrolled
|
when: not result_ipareplica_test.client_enrolled
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user