@pulumiverse/gandi
Version:
A Pulumi package for creating and managing gandi cloud resources.
24 lines • 1.05 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getGlueRecordOutput = exports.getGlueRecord = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
function getGlueRecord(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("gandi:domains/getGlueRecord:getGlueRecord", {
"name": args.name,
"zone": args.zone,
}, opts);
}
exports.getGlueRecord = getGlueRecord;
function getGlueRecordOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("gandi:domains/getGlueRecord:getGlueRecord", {
"name": args.name,
"zone": args.zone,
}, opts);
}
exports.getGlueRecordOutput = getGlueRecordOutput;
//# sourceMappingURL=getGlueRecord.js.map