Terraform Provider for Dell PowerMax
The Terraform Provider for Dell PowerMax allows Data Center and IT administrators to use Hashicorp Terraform to automate and orchestrate the provisioning and management of Dell PowerMax storage systems.
The Terraform Provider can be used to manage volumes, snapshot rules, protection policies and storage containers.
Table of contents
- License
- Prerequisites
- List of Resources in Terraform Provider for Dell PowerMax
- List of DataSources in Terraform Provider for Dell PowerMax
- Releasing, Maintenance and Deprecation
License
The Terraform Provider for PowerMax is released and licensed under the MPL-2.0 license. See LICENSE for the full terms.
Prerequisites
Terraform Provider | PowerMax Version | OS | Terraform | Golang |
---|---|---|---|---|
v1.0.0-beta2 | Unisphere 10.x | Ubuntu 22.04 RHEL 8.x RHEL 7.x |
1.4.x 1.3.x |
1.19.x |
List of Resources in Terraform Provider for Dell PowerMax
- Host
- Host Group
- Masking View
- Port Group
- Storage Group
- Volume
List of DataSources in Terraform Provider for Dell PowerMax
- Host
- Host Group
- Masking View
- Port Group
- Storage Group
- Volume
Installation of Terraform Provider for Dell PowerMax
Installation from Terraform Registry
The provider will be fetched from the Terraform registry and installed by Terraform automatically.
Create a file called main.tf
in your workspace with the following contents
terraform {
required_providers {
powermax = {
version = "1.0.0-beta2"
source = "registry.terraform.io/dell/powermax"
}
}
}
Then, in that workspace, run
terraform init
Installation from source code
Dependencies: Go 1.19.x, make, Terraform 1.4.x/1.3.x
Run
git clone https://github.com/dell/terraform-provider-powermax.git
cd terraform-provider-powermax
make install
Then follow installation from Terraform registry
SSL Certificate Verification
For SSL verifcation on RHEL, these steps can be performed:
- Copy the CA certificate to the
/etc/pki/ca-trust/source/anchors
path of the host by any external means. - Import the SSL certificate to host by running
update-ca-trust extract
For SSL verification on Ubuntu, these steps can be performed:
- Copy the CA certificate to the
/etc/ssl/certs
path of the host by any external means. - Import the SSL certificate to host by running:
update-ca-certificates
Releasing, Maintenance and Deprecation
Terraform Provider for Dell Technnologies PowerMax follows Semantic Versioning.
New version will be released regularly if significant changes(bug fixes or new features) are made in the provider.
Released code versions are located on tags with names of the form “vx.y.z” where x.y.z corresponds to the version number.