title | linkTitle | page_title | subcategory | description |
---|---|---|---|---|
apex_navigator_block_mobility_targets resource |
apex_navigator_block_mobility_targets |
apex_navigator_block_mobility_targets Resource - apex |
This Terraform resource is used to manage Mobility Targets on Apex Navigator. We can create, read, update, delete Data Mobility Targets on Apex Navigator.We can also import existing Data Mobility Targets from Apex Navigator. |
This Terraform resource is used to manage Mobility Targets on Apex Navigator. We can create, read, update, delete Data Mobility Targets on Apex Navigator.We can also import existing Data Mobility Targets from Apex Navigator.
/*
Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.
Licensed under the Mozilla Public License Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://mozilla.org/MPL/2.0/
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
resource "apex_navigator_block_mobility_targets" "example" {
# Name of the Mobility target
name = "TerraformMobilityTarget"
# Source Mobility Group Id
source_mobility_group_id = "POWERFLEX-ABCD1234567890__DATAMOBILITYGROUP__12345678-1234-1234-1234-123456789012"
# Target System Id
system_id = "POWERFLEX-ABCD1234567890"
# Target System Type
system_type = "POWERFLEX"
# Storage pool id to use for allocating target volumes
target_system_options = "POWERFLEX-ABCD1234567890_STORAGE_POOL__1234567890123456"
# Note: PowerFlex credentials are required to activate the system for mobility related operations.
# The source mobility group Powerflex
powerflex_source {
username = "example-source-username"
password = "example-source-pass"
}
# The Powerflex where you want to create the target
powerflex_target {
username = "example-target-username"
password = "example-target-pass"
}
}
output "examples_mobility_target" {
value = apex_navigator_block_mobility_targets.example
sensitive = true
}
name
(String) Name of the mobility targetsource_mobility_group_id
(String) ID of the source mobility groupsystem_id
(String) ID of the target systemsystem_type
(String) The source system type (e.g.: POWERFLEX)target_system_options
(String) Storage pool id to use for allocating target volumes
bandwidth_limit
(Number) Bandwidth limit in Mbps (Mega bits per second)description
(String) Description of the mobility targetpowerflex_source
(Block, Optional) (see below for nested schema)powerflex_target
(Block, Optional) (see below for nested schema)
creation_timestamp
(String) Timestamp from when the target was createdid
(String) Idenifier of this target mobility groupimage_timestamp
(String) Timestamp of the last source image copied to this targetlast_copy_job_id
(String) Last copy job IDtarget_members
(Attributes List) A mobility member map is a mapping of a mobility member and it's related member. For example a target volume with a reference to the source volume. Or a clone volume and its related target volume. (see below for nested schema)type
(String)
Required:
password
(String, Sensitive) Password of the powerflexusername
(String) Username of the powerflex
Optional:
host
(String) Host, ip or hostname of the powerflex. If left empty we will attempt to get the ip through Apex from the IDinsecure
(Boolean) Validated the certificate when connecting to the powerflex, defaults if unset to truescheme
(String) Scheme of the powerflex, defaults if unset to https
Required:
password
(String, Sensitive) Password of the powerflexusername
(String) Username of the powerflex
Optional:
host
(String) Host, ip or hostname of the powerflex. If left empty we will attempt to get the ip through Apex from the IDinsecure
(Boolean) Validated the certificate when connecting to the powerflex, defaults if unset to truescheme
(String) Scheme of the powerflex, defaults if unset to https
Read-Only:
id
(String) ID of the membername
(String) Name of the memberparent_id
(String) Identifier of the related mobility membersize
(String) Size of the member
Import is supported using the following syntax:
/*
Copyright (c) 2021-2024 Dell Inc., or its subsidiaries. All Rights Reserved.
Licensed under the Mozilla Public License Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://mozilla.org/MPL/2.0/
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
terraform import apex_navigator_block_mobility_targets.example "{\"id\":\"<mobility-target-id>\",\"target_username\":\"<powerflex-target-username>\",\"target_password\":\"<powerflex-target-password>\",\"target_host\":\"<powerflex-target-host>\",\"source_username\":\"<powerflex-source-username>\",\"source_password\":\"<powerflex-source-password>\",\"source_host\":\"<powerflex-source-host>\",\"insecure\":<insecure>,\"scheme\":\"<powerflex-scheme>\"}"