The Pulumi PowerDNS provider provides resources to interact with a PowerDNS Authoritative DNS Server.
Project description
Pulumi PowerDNS Native Provider
This repository is a contains a pulumi native provider for the PowerDNS Authoritative Nameserver. This allow the creation of zones and records.
Installing
This package is available for several languages/platforms:
Node.js (JavaScript/TypeScript)
To use from JavaScript or TypeScript in Node.js, install using either npm:
npm install @nextpart/powerdns
or yarn:
yarn add @nextpart/powerdns
Python
To use from Python, install using pip:
pip install pulumi_powerdns
Go
To use from Go, use go get to grab the latest version of the library:
go get github.com/nextpart/pulumi-powerdns-native/sdk/go/...
.NET
To use from .NET, install using dotnet add package:
dotnet add package Pulumi.Aci
Example
Node.js (JavaScript/TypeScript)
import * as pulumi from "@pulumi/pulumi";
import * as powerdns from "@nextpart/powerdns";
const zone = new powerdns.Zone("foobar", { name: "foobar.com.", kind: "master", account: "admin"});
const record = new powerdns.Record("test", {
zone: "foobar.com.", type: "A", name: "test.foobar.com.", ttl: 300, records : ["10.0.0.1", "10.0.0.2", "10.0.0.3", "10.0.0.4"]
})
const record2 = new powerdns.Record("foo", {
zone: "foobar.com.", type: "A", name: "foo.foobar.com.", ttl: 300, records : ["10.0.0.1", "10.0.0.3", "10.0.0.4"]
})
Python
import nextpart_powerdns as pdns
Go
import (
"fmt"
pdns "github.com/nextpart/pulumi-powerdns-native/sdk/go/powerdns"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := pdns.NewZone(ctx, "foobar.com", &pdns.ZoneArgs{
Name: pulumi.String("foobar.com."),
Kind: pulumi.String("master"),
Account: pulumi.String("admin"),
})
if err != nil {
return err
}
_, err = pdns.NewRecord(ctx, "test.foobar.com.", &pdns.RecordArgs{
Name: pulumi.String("test.foobar.com."),
Zone: pulumi.String("foobar.com."),
Type: pulumi.String("A"),
Records: pulumi.ToStringArray([]string{"10.0.0.1", "10.0.0.2", "10.0.3.0"}),
Ttl: pulumi.Int(300),
})
return err
})
}
.NET
using Pulumi;
using Pulumi.Powerdns;
class Powerdns : Stack
{
public Powerdns()
{
}
}
Development
Prerequisites
Ensure the following tools are installed and present in your $PATH:
pulumictl- Go 1.21 or 1.latest
- NodeJS 14.x. We recommend using nvm to manage NodeJS installations.
- Yarn
- TypeScript
- Python (called as
python3). For recent versions of MacOS, the system-installed version is fine. - .NET
Build the provider and install the plugin
$ make build install
This will:
- Create the SDK codegen binary and place it in a
./binfolder (gitignored) - Create the provider binary and place it in the
./binfolder (gitignored) - Generate the dotnet, Go, Node, and Python SDKs and place them in the
./sdkfolder - Install the provider on your machine.
Test against the example
$ cd examples/simple
$ yarn link @nextpart/powerdns
$ yarn install
$ pulumi stack init test
$ pulumi up
Now that you have completed all of the above steps, you have a working provider that generates a random string for you.
A brief repository overview
You now have:
- A
provider/folder containing the building and implementation logiccmd/pulumi-resource-powerdns/main.go- holds the provider's sample implementation logic.
deployment-templates- a set of files to help you around deployment and publicationsdk- holds the generated code libraries created bypulumi-gen-powerdns/main.goexamplesa folder of Pulumi programs to try locally and/or use in CI.- A
Makefileand thisREADME.
Additional Details
This repository depends on the pulumi-go-provider library. For more details on building providers, please check the Pulumi Go Provider docs.
Build Examples
Create an example program using the resources defined in your provider, and place it in the examples/ folder.
You can now repeat the steps for build, install, and test.
References
Other resources/examples for implementing providers:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pulumi_powerdns-0.0.2.tar.gz.
File metadata
- Download URL: pulumi_powerdns-0.0.2.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71373052a78a6f9887a237e7a20d46b459d5f10711e92eccade9f3a28a4c1c9c
|
|
| MD5 |
7fa01dddafd64d4a27bde9359ce70d64
|
|
| BLAKE2b-256 |
83563b427a18699418b740a7c9313853bdfc67f053e253bd06164205c409b48a
|