This Terraform provider helps manage DNS records.
Full documentation is available in the docs directory or on the Terraform Registry.
- Clone the repository
- Enter the repository directory
- Build the provider using
make build
git clone https://github.com/marceloalmeida/terraform-provider-dnshelper
cd terraform-provider-dnshelper
make buildTo use the provider, add the following to your Terraform configuration:
terraform {
required_providers {
dnsrecords = {
source = "registry.terraform.io/marceloalmeida/dnshelper"
}
}
}
provider "dnshelper" {}See the examples directory for more detailed usage examples.
Contributions are welcome! Please read the contribution guidelines before submitting a pull request:
- Fork the repository
- Create a branch for your changes
- Make your changes
- Run tests with
make test - Submit a pull request
This provider is licensed under the LICENSE file.
If you wish to work on the provider, you'll need:
To compile the provider:
make buildTo run the tests:
make testTo run the full test suite with acceptance tests:
make testacc