https://github.com/i3dnet/terraform-provider-i3dnet
Terraform i3D.net provider
https://github.com/i3dnet/terraform-provider-i3dnet
cloud hashicorp i3d infrastructure-as-code terraform terraform-provider
Last synced: 4 months ago
JSON representation
Terraform i3D.net provider
- Host: GitHub
- URL: https://github.com/i3dnet/terraform-provider-i3dnet
- Owner: i3dnet
- Created: 2024-12-07T16:43:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-02-09T14:17:12.000Z (4 months ago)
- Last Synced: 2026-02-09T16:27:24.559Z (4 months ago)
- Topics: cloud, hashicorp, i3d, infrastructure-as-code, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/i3dnet/i3dnet/latest/docs
- Size: 289 KB
- Stars: 4
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# i3D.net Terraform Provider
The **i3D.net Terraform Provider** allows you to manage [i3D.net](https://www.i3d.net/) resources using Terraform.
- Documentation: https://registry.terraform.io/providers/i3dnet/i3dnet/latest/docs
## Requirements
- [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0
- [Go](https://golang.org/doc/install) >= 1.24
## Building The Provider
1. Clone the repository
1. Enter the repository directory
1. Build the provider using the Go `install` command:
```shell
go install
```
## Adding Dependencies
This provider uses [Go modules](https://github.com/golang/go/wiki/Modules).
Please see the Go documentation for the most up-to-date information about using Go modules.
To add a new dependency `github.com/author/dependency` to your Terraform provider:
```shell
go get github.com/author/dependency
go mod tidy
```
Then commit the changes to `go.mod` and `go.sum`.
## Using the provider
See the [i3D.net Provider documentation](https://registry.terraform.io/providers/i3dnet/i3dnet/latest/docs) to get
started using the i3D.net provider.
## Developing the Provider
See [CONTRIBUTING.md](./CONTRIBUTING.md) for information about contributing to this project.