Gandi v0.0.14 published on Saturday, Dec 17, 2022 by Pulumiverse
Gandi
The Gandi provider for Pulumi can be used to provision any of the resources available in Gandi.
Example
import * as gandi from "@pulumiverse/gandi";
const domain_nameservers = new gandi.domains.Nameservers("my-domain", {
domain: "my-domain.com",
servers: [
"1.1.1.1",
"2.2.2.2",
],
});
You could find more complete and detailed examples in the pulumi-gandi repository