Introduction
The IonosCloud provider gives the ability to deploy and configure resources using the IonosCloud APIs.
NOTE: In order to use a specific version of this provider, please include the following block at the beginning of your terraform config files details:
provider "ionoscloud" {
version = "~> 6.3.0"
}
Clone repository to:
$GOPATH/src/github.com/ionos-cloud/terraform-provider-ionoscloud
$ mkdir -p $GOPATH/src/github.com/ionos-cloud; cd $GOPATH/src/github.com/ionos-cloud
$ git clone [email protected]:ionos-cloud/terraform-provider-ionoscloud
Enter the provider directory and build the provider
$ cd $GOPATH/src/github.com/ionos-cloud/terraform-provider-ionoscloud
$ make build
To compile the provider, run
make build
. This will build the provider and put the provider binary in the $GOPATH/bin
directory.$ make build
...
$ $GOPATH/bin/terraform-provider-ionoscloud
...
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
You can enable certificate pinning if you want to bypass the normal certificate checking procedure, by doing the following:
Set env variable IONOS_PINNED_CERT=<insert_sha256_public_fingerprint_here>
You can get the sha256 fingerprint most easily form the browser by inspecting the certificate.
In the default mode, the Terraform provider returns only HTTP client errors. These usually consist only of the HTTP status code. There is no clear description of the problem. But if you want to see the API call error messages as well, you need to set the SDK and Terraform provider environment variables.
You can enable logging now using the
IONOS_LOG_LEVEL
env variable. Allowed values: off
, debug
and trace
. Defaults to off
.⚠️ Note: We recommend you only use
trace
level for debugging purposes. Disable it in your production environments because it can log sensitive data. It logs the full request and response without encryption, even for an HTTPS call. Verbose request and response logging can also significantly impact your application’s performance.$ export IONOS_LOG_LEVEL=debug
⚠️ Note:
IONOS_DEBUG
is now deprecated and will be removed in a future release.⚠️ Note: We recommend you only use
IONOS_DEBUG
for debugging purposes. Disable it in your production environments because it can log sensitive data. It logs the full request and response without encryption, even for an HTTPS call. Verbose request and response logging can also significantly impact your application’s performance.$ export TF_LOG=debug
$ export IONOS_DEBUG=true
$ terraform apply
now you can see the response body incl. api error message:
{
"httpStatus" : 422,
"messages" : [ {
"errorCode" : "200",
"message" : "[VDC-yy-xxxx] Operation cannot be executed since this Kubernetes Nodepool is already marked for deletion. Current state of the resource is FAILED_DESTROYING."
}]
}
Last modified 4mo ago