@@ -207,11 +207,11 @@ ansible_httpapi_use_ssl: true
207207ansible_httpapi_validate_certs: false
208208ansible_network_os: cisco.dcnm.dcnm
209209# NDFC API Credentials
210- ansible_user: "{{ lookup('env', 'ansible_user ') }}"
211- ansible_password: "{{ lookup('env', 'ansible_password ') }}"
210+ ansible_user: "{{ lookup('env', 'ND_USERNAME ') }}"
211+ ansible_password: "{{ lookup('env', 'ND_PASSWORD ') }}"
212212# Credentials for devices in Inventory
213- ndfc_device_username : "{{ lookup('env', 'ndfc_device_username ') }}"
214- ndfc_device_password : "{{ lookup('env', 'ndfc_device_password ') }}"
213+ ndfc_switch_username : "{{ lookup('env', 'NDFC_SW_USERNAME ') }}"
214+ ndfc_switch_password : "{{ lookup('env', 'NDFC_SW_PASSWORD ') }}"
215215
216216` ` `
217217
@@ -230,8 +230,8 @@ The environment variables are set in the shell that is going to execute the play
230230export ansible_user=admin
231231export ansible_password=Admin_123
232232# These are the credentials for the devices in the inventory
233- export ndfc_device_username =admin
234- export ndfc_device_password =Admin_123
233+ export ndfc_switch_username =admin
234+ export ndfc_switch_password =Admin_123
235235` ` `
236236
237237The following quickstart repository is available to provide a step by step guide for using this collection
0 commit comments