The Terraform Provider for OpenManage Enterprise is a provider for terraform that allows the resource management of PowerEdge servers using OpenManage Enterprise (OME). For more details on OME, please refer to OME official webpage here.
For general information about Terraform, visit the official website and the GitHub project page.
- Code of Conduct
- Committer Guide
- Contributing Guide
- Maintainers
- Support
- Security
- Additional Information
- Attribution
- New to Terraform?
For any Terraform Provider for Dell OME issues, questions or feedback, please follow our support process. You can interact with us on GitHub by creating various types of GitHub Issues such as bugs, feature requests, and questions.
| Terraform Provider | OME Version | OS | Terraform | Golang |
|---|---|---|---|---|
| v1.2.3 | 4.0.1 4.1.0 4.3.1 |
Ubuntu22.04 RHEL9.x |
1.9.x 1.10.x |
1.24 |
- Configuration Report
- Device Groups
- Template
- VLAN Networks
- Device Datasource
- Device Compliance Report
- Application Certificate Datasource
- Firmware Repository
- Firmware Baseline Compliance Report
- Firmware Catalog
- Configuration Baseline
- Configuration Compliance
- Deployment
- Template
- User Resource
- Static Group Resource
- Discovery Resource
- Devices Resource
- Device Action Resource
- Application CSR Resource
- Application Certificate Resource
- Appliance Network Resource
- Firmware Catalog
- Firmware Baselines
Install Terraform Provider for OpenManage Enterprise from terraform registry by adding the following block
terraform {
required_providers {
ome = {
version = "1.2.3"
source = "dell/ome"
}
}
}
# Provider Details
provider "ome" {
username = "username"
password = "password"
host = "yourhost.host.com"
timeout = 30
port = 443
protocol = "https"
skipssl = false
## Can also be set using environment variables
## If environment variables are set it will override this configuration
## Example environment variables
# OME_USERNAME="username"
# OME_PASSWORD="password"
# OME_HOST="yourhost.host.com"
# OME_PORT="443"
# OME_SKIP_SSL="true"
# OME_TIMEOUT="30"
# OME_PROTOCOL="https"
}
For adding resources, please refer examples
Terraform Provider for OpenManage Enterprise is 100% open source and community-driven. All components are available under MPL-2.0 license on GitHub.
Terraform Provider for Dell Technnologies OME follows Semantic Versioning.
New versions will be released regularly if significant changes (bug fix or new feature) are made in the provider.
Released code versions are located on tags in the form of "vx.y.z" where x.y.z corresponds to the version number.
For more detailed information on the provider, please refer to Dell Terraform Providers Documentation.
Here are some helpful links to get you started if you are new to terraform before using our provider:
- Intro to Terraform: https://developer.hashicorp.com/terraform/intro
- Providers: https://developer.hashicorp.com/terraform/language/providers
- Resources: https://developer.hashicorp.com/terraform/language/resources
- Datasources: https://developer.hashicorp.com/terraform/language/data-sources
- Import: https://developer.hashicorp.com/terraform/language/import
- Variables: https://developer.hashicorp.com/terraform/language/values/variables
- Modules: https://developer.hashicorp.com/terraform/language/modules
- State: https://developer.hashicorp.com/terraform/language/state
- Environment Variables: https://developer.hashicorp.com/terraform/cli/config/environment-variables