@pulumiverse/gandi
Version:
A Pulumi package for creating and managing gandi cloud resources.
22 lines • 864 B
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDomainOutput = exports.getDomain = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
function getDomain(args, opts) {
if (!opts) {
opts = {};
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
return pulumi.runtime.invoke("gandi:domains/getDomain:getDomain", {
"name": args.name,
}, opts);
}
exports.getDomain = getDomain;
function getDomainOutput(args, opts) {
return pulumi.output(args).apply(a => getDomain(a, opts));
}
exports.getDomainOutput = getDomainOutput;
//# sourceMappingURL=getDomain.js.map