#SVM-DR ipspace issue

1 messages · Page 1 of 1 (latest)

autumn lintel
#

I'm trying to setup a SVM-DR with the following module:

name: "{{ task_description }}"
netapp.ontap.na_ontap_snapmirror:<<: *auth
state : present
hostname : "{{ cluster.destination.management_ip }}"
source_endpoint :
cluster : "{{ cluster.source.name }}"
path : "{{ svm.source.name + ':' }}" #" + ':' + snapmirror.source.volume.name }}"# ipspace : "{{ ipspace.name }}"
destination_endpoint :
cluster : "{{ cluster.destination.name }}"
path : "{{ svm.destination.name + ':' }}" #" + ':' + snapmirror.destination.volume.name }}"# ipspace : "{{ ipspace.name }}"
create_destination :
enabled : True
identity_preservation : "{{ svmDR.identity_preservation | default(omit) }}"
initialize : "{{ svmDR.initialize | default(omit) }}"
policy : "{{ svmDR.policy | default(omit) }}"
relationship_state : "{{ svmDR.relationship_state | default(omit) }}"
schedule : "{{ svmDR.schedule | default(omit) }}"
use_rest : always

After running I get the following error:
Reason: Cannot create the SVM peer permission because the cluster peer relationship with peer cluster "cluster1" was created using the IPspace "InterCluster", but the specified SVM "n1012TonnyDR" was created using the IPspace "Cloud". To create SVM peer permission, both IPspaces must be the same.\n'', ''code'': ''13303868''}.

What am I missing?

rigid fossil