Hello,
I am performing tests on a customer to add the FSx he has in AWS to the Bluexp console.
We are running the following ansible module with the parameters that appear in the documentation for importing an FSx: https://docs.ansible.com/ansible/latest/collections/netapp/cloudmanager/na_cloudmanager_aws_fsx_module.html
- name: Import AWS FSX
netapp.cloudmanager.na_cloudmanager_aws_fsx:
import_file_system: True
file_system_id: "{{ fsx_id }}"
state: present
refresh_token: "{{ refresh_token }}"
name: fsxAnsible
region: "{{ region }}"
workspace_id: "{{ workspace_id }}"
tenant_id: "{{ tenant_id }}"
aws_credentials_name: "{{ aws_connector }}"
primary_subnet_id: "{{subnet}}"
register: fsxes
But when we run it, it asks for more parameters:
[09:01:51] fatal: [************]: FAILED! => {"changed": false, "msg": "state is present but all of the following are missing: fsx_admin_password, throughput_capacity, secondary_subnet_id, storage_capacity_size, storage_capacity_size_unit"}
**Are these parameters required by default? **
Because in our case the secondary_subnet_id does not apply as it is a FSx single-node 😅
Thanks!