Status: It is currently in beta. Please report any issues you encounter.
The Mondoo Provider allows Terraform to manage Mondoo resources.
terraform {
required_providers {
mondoo = {
source = "mondoohq/mondoo"
}
}
}
provider "mondoo" {
region = "us" # use "eu" for the European region
}
If you wish to work on the provider, you'll need:
To enter development mode, run make dev/enter
. This will build the provider inside the Terraform plugins directory
and generate a Terraform configuration ~/.terraformrc
.
Once in development mode, you can change directories to any of the Terraform plans in the examples/ folder.
To exit development mode, run make dev/exit
. Note that this will remove the Terraform configuration ~/.terraformrc
.
To generate or update documentation, run make generate
.
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
This provider is built on the Terraform Plugin Framework. The template repository built on the Terraform Plugin SDK can be found at terraform-provider-scaffolding. The directory structure contains the following directories:
- A resource and a data source (
internal/provider/
), - Examples (
examples/
) and generated documentation (docs/
), - Miscellaneous meta files.
- Clone the repository
- Enter the repository directory
- Build the provider using the Go
install
command:
go install
To use the local provider, add the following to your Terraform configuration ~/.terraformrc
and provide it with the absolute path to your /go/bin
directory:
provider_installation {
dev_overrides {
"mondoohq/mondoo" = "/Users/USERNAME/go/bin"
}
# For all other providers, install them directly from their origin provider
# registries as normal. If you omit this, Terraform will _only_ use
# the dev_overrides block, and so no other providers will be available.
direct {}
}
See Terraform documentation for more details about provider install configuration.
This provider uses Go 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:
go get github.com/author/dependency
go mod tidy
Then commit the changes to go.mod
and go.sum
.
The easiest way to create a new resource is to use the Terraform Plugin Framework Code Generator
go install github.com/hashicorp/terraform-plugin-codegen-framework/cmd/tfplugingen-framework@latest
Now you can scaffold a new resource:
tfplugingen-framework scaffold resource --name policy_upload --output-dir internal/provider