Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.52 KB

INSTALLATION.md

File metadata and controls

56 lines (44 loc) · 1.52 KB

Installation of Terraform Provider for Dell PowerFlex

Installation from public repository

The provider will be fetched from the public repository and installed by Terraform automatically. Create a file called main.tf in your workspace with the following contents

terraform {
  required_providers {
    powerflex = {
      version = "1.5.0"
      source  = "registry.terraform.io/dell/powerflex"
    }
  }
}

Then, in that workspace, run

terraform init

Installation from source code

  1. Clone this repo
  2. In the root of this repo run
make install

Then follow installation from public repo

SSL Certificate Verification

For SSL verifcation on RHEL, below 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