powerflex_system (Resource)
This resource is used to manage the cluster level operations of the PowerFlex Array. This resource supports Create, Update and Delete operations.
Example Usage
/*
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.
*/
# Command to run this tf file : terraform init && terraform plan && terraform apply
# Create, Update, Delete is supported for this resource
# To import, check import.sh for more info
# restricted_mode is the required parameter
resource "powerflex_system" "test" {
restricted_mode = "Guid"
sdc_approved_ips = [
{
id = "sdc_id1"
ips = ["sdc_ip1", "sdc_ip2"]
},
{
id = "sdc_id2"
ips = ["sdc_ip3"]
},
]
}
Schema
Required
restricted_mode
(String) Restricted mode of the cluster. Accepted values areNone
,Guid
,ApprovedIp
.
Optional
sdc_approved_ips
(Attributes List) Specifies list of SDC IPs. (see below for nested schema)sdc_guids
(List of String) Specifies list of SDC GUIDs.sdc_ids
(List of String) Specifies list of SDC IDs.sdc_names
(List of String) Specifies list of SDC names.
Read-Only
id
(String) System ID
Nested Schema for sdc_approved_ips
Required:
id
(String) SDC ID.ips
(Set of String) SDC IPs.
Import
Import is supported using the following syntax:
# /*
# 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.
# */
# import system
terraform import powerflex_system.test ""
# Another way to import system using system ID
terraform import powerflex_system.test "system_id"