https://github.com/dell/terraform-provider-objectscale
https://github.com/dell/terraform-provider-objectscale
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dell/terraform-provider-objectscale
- Owner: dell
- License: mpl-2.0
- Created: 2024-05-30T01:08:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-07-21T17:51:57.000Z (18 days ago)
- Last Synced: 2026-07-21T19:16:46.719Z (18 days ago)
- Language: Go
- Size: 760 KB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Terraform Provider for Dell Technologies ObjectScale
[](https://github.com/dell/terraform-provider-objectscale/blob/main/about/CODE_OF_CONDUCT.md)
[](https://github.com/dell/terraform-provider-objectscale/blob/main/LICENSE)
The Terraform Provider for Dell Technologies (Dell) ObjectScale allows Data Center and IT administrators to use Hashicorp Terraform to automate and orchestrate the provisioning and management of Dell ObjectScale storage systems.
The logged-in user configured in the Terraform provider must possess adequate permissions against the target Dell ObjectScale System.
## Table of Contents
* [Code of Conduct](https://github.com/dell/dell-terraform-providers/blob/main/docs/CODE_OF_CONDUCT.md)
* [Maintainer Guide](https://github.com/dell/dell-terraform-providers/blob/main/docs/MAINTAINER_GUIDE.md)
* [Committer Guide](https://github.com/dell/dell-terraform-providers/blob/main/docs/COMMITTER_GUIDE.md)
* [Contributing Guide](https://github.com/dell/dell-terraform-providers/blob/main/docs/CONTRIBUTING.md)
* [List of Adopters](https://github.com/dell/dell-terraform-providers/blob/main/docs/ADOPTERS.md)
* [Security](https://github.com/dell/dell-terraform-providers/blob/main/docs/SECURITY.md)
* [Support](#support)
* [License](#license)
* [Prerequisites](#prerequisites)
* [List of DataSources in Terraform Provider for Dell ObjectScale](#list-of-datasources-in-terraform-provider-for-dell-objectscale)
* [List of Resources in Terraform Provider for Dell ObjectScale](#list-of-resources-in-terraform-provider-for-dell-objectscale)
* [Releasing, Maintenance and Deprecation](#releasing-maintenance-and-deprecation)
## Support
For any Terraform Provider for Dell ObjectScale issues, questions or feedback, please follow our [support process](https://github.com/dell/dell-terraform-providers/blob/main/docs/SUPPORT.md)
## License
The Terraform Provider for Dell ObjectScale is released and licensed under the MPL-2.0 license. See [LICENSE](https://github.com/dell/terraform-provider-objectscale/blob/main/LICENSE) for the full terms.
## Prerequisites
| **Terraform Provider** | **ObjectScale Version** | **OS** | **Terraform** | **Golang** |
|------------------------|:------------------------|:-----------------------|-------------------|------------|
| v1.1.0 | 4.1.x | RHEL 9.6, UBUNTU 22.04 | 1.14.x and 1.15.x | 1.25.6 |
## List of Data Sources in Terraform Provider for Dell ObjectScale
### Identity & Access Management (IAM)
* [IAM Group](docs/data-sources/iam_groups.md)
* [IAM Policy](docs/data-sources/iam_policy.md)
* [IAM Role](docs/data-sources/iam_role.md)
* [IAM User](docs/data-sources/iam_user.md)
* [IAM Inline Policy](docs/data-sources/iam_inline_policy.md)
* [IAM SAML Provider](docs/data-sources/iam_saml_provider.md)
* [IAM Service Provider](docs/data-sources/iam_service_provider.md)
* [IAM Service Provider Metadata](docs/data-sources/iam_service_provider_metadata.md)
### Namespacing & Tenancy
* [Namespace](docs/data-sources/namespace.md)
### User Management
* [Object User](docs/data-sources/object_user.md)
* [Management User](docs/data-sources/management_user.md)
### Object Storage Containers
* [Bucket](docs/data-sources/bucket.md)
### Data Protection
* [Replication Group](docs/data-sources/replication_group.md)
### Storage Topology & Capacity Domains
* [Storage Pool](docs/data-sources/storage_pool.md)
* [VDC](docs/data-sources/vdc.md)
### Certificate Management
* [Object Certificate](docs/data-sources/object_certificate.md)
* [VDC Certificate](docs/data-sources/vdc_certificate.md)
## List of Resources in Terraform Provider for Dell ObjectScale
### Identity & Access Management (IAM)
* [IAM Group](docs/resources/iam_group.md)
* [IAM Policy](docs/resources/iam_policy.md)
* [IAM Inline Policy](docs/resources/iam_inline_policy.md)
* [IAM Policy Attachment](docs/resources/iam_policy_attachment.md)
* [IAM Role](docs/resources/iam_role.md)
* [IAM User](docs/resources/iam_user.md)
* [IAM User Access Key](docs/resources/iam_user_access_key.md)
* [IAM Group Membership](docs/resources/iam_group_membership.md)
* [IAM SAML Provider](docs/resources/iam_saml_provider.md)
* [IAM Service Provider](docs/resources/iam_service_provider.md)
### Object Storage Containers
* [Bucket](docs/resources/bucket.md)
### Namespace and Tenancy
* [Namespace](docs/resources/namespace.md)
### User Management
* [Object User](docs/resources/object_user.md)
* [Object User Secret Key](docs/resources/object_user_secret_key.md)
* [Management User](docs/resources/management_user.md)
### Data Protection
* [Replication Group](docs/resources/replication_group.md)
### Certificate Management
* [Object Certificate](docs/resources/object_certificate.md)
* [VDC Certificate](docs/resources/vdc_certificate.md)
## Installation and execution of Terraform Provider for Dell ObjectScale
## 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
```tf
terraform {
required_providers {
objectscale = {
version = "1.1.0"
source = "registry.terraform.io/dell/objectscale"
}
}
}
```
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](#installation-from-public-repository)
## 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 Technologies ObjectScale follows [Semantic Versioning](https://semver.org/).
New versions will be released on a regular basis whenever significant updates—such as bug fixes or new features—are introduced to 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.
## Documentation
For more detailed information, please refer to
* [Dell Terraform Providers Documentation](https://dell.github.io/terraform-docs/)
* [Dell Terraform Registry](https://registry.terraform.io/providers/dell/objectscale/latest/docs)
## New to Terraform?
**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