All Projects → dell → terraform-provider-redfish

dell / terraform-provider-redfish

Licence: MPL-2.0 license
Terraform provider for Redfish REST APIs

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects
shell
77523 projects

Projects that are alternatives of or similar to terraform-provider-redfish

omsdk
Dell EMC OpenManage Python SDK
Stars: ✭ 44 (-18.52%)
Mutual labels:  redfish, idrac
terraform-provider-argocd
Terraform provider for ArgoCD
Stars: ✭ 245 (+353.7%)
Mutual labels:  terraform-provider
bmcweb
A do everything Redfish, KVM, GUI, and DBus webserver for OpenBMC
Stars: ✭ 109 (+101.85%)
Mutual labels:  redfish
terraform-provider-twitter
No description or website provided.
Stars: ✭ 24 (-55.56%)
Mutual labels:  terraform-provider
terraform-provider-external
Utility provider that exists to provide an interface between Terraform and external programs. Useful for integrating Terraform with a system for which a first-class provider does not exist.
Stars: ✭ 136 (+151.85%)
Mutual labels:  terraform-provider
terraform-provider-rancher
Terraform Rancher provider
Stars: ✭ 35 (-35.19%)
Mutual labels:  terraform-provider
Terraform Provider Auth0
Auth0 Terraform Provider
Stars: ✭ 252 (+366.67%)
Mutual labels:  terraform-provider
terraform-provider-artifactory
Terraform provider for managing Artifactory
Stars: ✭ 17 (-68.52%)
Mutual labels:  terraform-provider
terraform-provider-circleci
Terraform provider for CircleCI
Stars: ✭ 94 (+74.07%)
Mutual labels:  terraform-provider
python-redfish-library
Python3 library for interacting with devices that support a Redfish service
Stars: ✭ 128 (+137.04%)
Mutual labels:  redfish
terraform-provider-logicmonitor
Terraform LogicMonitor provider.
Stars: ✭ 19 (-64.81%)
Mutual labels:  terraform-provider
Redfish-Tacklebox
Python based utilities for performing common management operations with Redfish
Stars: ✭ 33 (-38.89%)
Mutual labels:  redfish
netbox-sync
Sync objects from VMware or redfish sources to NetBox
Stars: ✭ 172 (+218.52%)
Mutual labels:  redfish
terraform-provider-mysql
Terraform MySQL provider – This Terraform provider is archived per our provider archiving process: https://terraform.io/docs/internals/archiving.html
Stars: ✭ 59 (+9.26%)
Mutual labels:  terraform-provider
terraform-provider-cisco-aci
Terraform provider for automating Cisco ACI enabled networks
Stars: ✭ 14 (-74.07%)
Mutual labels:  terraform-provider
terraform-provider-tsuru
Terraform provider for tsuru
Stars: ✭ 17 (-68.52%)
Mutual labels:  terraform-provider
terraform-provider-oneview
Automates the provisioning of physical infrastructure from a private cloud using templates from HPE OneView with Terraform
Stars: ✭ 46 (-14.81%)
Mutual labels:  terraform-provider
terraform-provider-commercetools
Terraform provider for commercetools
Stars: ✭ 58 (+7.41%)
Mutual labels:  terraform-provider
terraform-provider-fusionauth
registry.terraform.io/providers/gpsinsight/fusionauth/latest
Stars: ✭ 23 (-57.41%)
Mutual labels:  terraform-provider
terraform-provider-azurerm
Terraform provider for Azure Resource Manager
Stars: ✭ 3,829 (+6990.74%)
Mutual labels:  terraform-provider

Terraform provider for Redfish

The Terraform provider for Redfish is a plugin for Terraform that allows for full lifecycle management of x86 servers using Redfish REST APIs. For more details on Redfish, please refer to DMTF Redfish specification here.

For general information about Terraform, visit the official website and the GitHub project page.

Requirements

  • Terraform 1.x.x
  • Go 1.13.x (to build the provider plugin)

Installation

Note: This project uses Go modules making it safe to work with it outside of your existing GOPATH. The instructions that follow assume a directory in your home directory outside of the standard GOPATH (i.e $HOME/development/terraform-providers/).

Linux

Clone repository to: $HOME/development/terraform-providers/

$ mkdir -p $HOME/development/terraform-providers/; cd $HOME/development/terraform-providers/
$ git clone https://github.com/dell/terraform-provider-redfish.git
...

Enter the provider directory and run make install. This will build the provider and put the provider in your user plugin directory (by default, it is /.terraform.d/plugins/registry.terraform.io/dell/redfish//${VERSION}/linux_amd64.).

$ make install

if you want to copy the provider binary to a custom terraform plugin directory, then you can enter the provider directory and run make build. This will build the provider. You can then move the binary to your custom plugin directory.

$ make build
...
$ mv terraform-provider-redfish <YOUR-CUSTOM-PLUGIN-DIRECTORY>
...

Windows

Download the Terraform binary from Terraform's website. For Windows it is a standalone binary. If you already have an existing Terraform configuration, you can put it in the same directory is that configuration. If you just want to run one of our examples, place it in the appropriate examples folder. For example:

Terraform Placement

Navigate to your top level directory (terraform-provider-redfish) and run:

For more information on Terraform's new directory structure for local providers see these patch notes.

mkdir %appdata%\terraform.d\plugins\registry.terraform.io\dell.com\dell\redfish\0.2.0\windows_amd64
go mod vendor
go build -o terraform-provider-redfish.exe
move .\terraform-provider-redfish.exe %appdata%\terraform.d\plugins\registry.terraform.io\dell.com\dell\redfish\0.2.0\windows_amd64

Now change directories to the folder where you placed terraform.exe and run terraform init.

You should see an output like this:

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

If you see something like (your version numbers will probably be different):

Initializing modules...

Initializing the backend...

Initializing provider plugins...
- Finding hashicorp.com/edu/hashicups versions matching "0.2.0"...

Error: Failed to query available provider packages

Could not retrieve the list of available versions for provider
hashicorp.com/edu/hashicups: no available releases match the given constraints
0.2.0

this means that your directory structure has issues. Go back and make sure your local directory structure matches exactly. For troubleshooting it might be helpful to add the -plugins-dir option to your terraform init command.

Documentation

The documentation for the provider can found here

Roadmap

Our roadmap for Terraform provider for Redfish resources can be found here

Support

The code is provided AS-IS and not supported by Dell EMC.

Contributing

The Terrafrom Redfish provider is open-source and community supported. We appreciate your help! To contribute, please read the contribution guidelines. You may also report an issue. Once you've filed an issue, it will follow the issue lifecycle.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].