No description
  • Go 95.1%
  • HTML 2.1%
  • Shell 1.6%
  • Makefile 1.2%
Find a file
OpenTofu Core Development Team e8a2dc3735 Apply GitHub workflow changes
2025-11-18 12:28:57 +02:00
.github Apply GitHub workflow changes 2025-11-18 12:28:57 +02:00
oneandone provider: Require Go 1.11 in TravisCI and README 2019-01-07 17:03:24 -05:00
scripts Fix Changelog Links Script for oneandone provider 2017-06-26 13:59:16 -04:00
vendor deps: github.com/hashicorp/terraform@sdk-v0.11-with-go-modules 2019-02-22 18:22:43 -05:00
website Update markdown with baremetal resource 2018-08-29 15:25:07 +02:00
.gitignore Updating Makefile + Add gitignore 2017-06-06 16:28:45 -04:00
.go-version provider: Ensured Go 1.11 in TravisCI and README 2019-02-22 18:22:30 -05:00
.travis.yml deps: use go modules for dep mgmt 2019-02-22 18:22:38 -05:00
CHANGELOG.md Cleanup after v1.3.0 release 2018-09-04 11:54:16 +00:00
GNUmakefile deps: use go modules for dep mgmt 2019-02-22 18:22:38 -05:00
go.mod deps: github.com/hashicorp/terraform@sdk-v0.11-with-go-modules 2019-02-22 18:22:43 -05:00
go.sum deps: github.com/hashicorp/terraform@sdk-v0.11-with-go-modules 2019-02-22 18:22:43 -05:00
LICENSE initial commit 2017-06-05 20:53:59 +00:00
main.go Initial transfer of provider code 2017-06-06 12:21:23 -04:00
README.md Update README.md 2020-12-08 10:16:37 -07:00

Please note: This Terraform provider is archived, per our provider archiving process. What does this mean?

  1. The code repository and all commit history will still be available.
  2. Existing released binaries will remain available on the releases site.
  3. Issues and pull requests are not being monitored.
  4. New releases will not be published.

If anyone from the community or an interested third party is willing to maintain it, they can fork the repository and publish it to the Terraform Registry. If you are interested in maintaining this provider, please reach out to the Terraform Provider Development Program at terraform-provider-dev@hashicorp.com.


Terraform Provider

Requirements

  • Terraform 0.10.x
  • Go 1.11 (to build the provider plugin)

Building The Provider

Clone repository to: $GOPATH/src/github.com/terraform-providers/terraform-provider-oneandone

$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone git@github.com:terraform-providers/terraform-provider-oneandone

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-oneandone
$ make build

Using the provider

See the 1&1 Provider documentation to get started using the 1&1 provider.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.11+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

$ make bin
...
$ $GOPATH/bin/terraform-provider-oneandone
...

In order to test the provider, you can simply run make test.

$ make test

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

$ make testacc