@pulumi/github
Version:
A Pulumi package for creating and managing github cloud resources.
42 lines • 1.77 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.getDependabotOrganizationSecretsOutput = exports.getDependabotOrganizationSecrets = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Use this data source to retrieve the list of dependabot secrets of the organization.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as github from "@pulumi/github";
*
* const example = github.getDependabotOrganizationSecrets({});
* ```
*/
function getDependabotOrganizationSecrets(opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("github:index/getDependabotOrganizationSecrets:getDependabotOrganizationSecrets", {}, opts);
}
exports.getDependabotOrganizationSecrets = getDependabotOrganizationSecrets;
/**
* Use this data source to retrieve the list of dependabot secrets of the organization.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as github from "@pulumi/github";
*
* const example = github.getDependabotOrganizationSecrets({});
* ```
*/
function getDependabotOrganizationSecretsOutput(opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("github:index/getDependabotOrganizationSecrets:getDependabotOrganizationSecrets", {}, opts);
}
exports.getDependabotOrganizationSecretsOutput = getDependabotOrganizationSecretsOutput;
//# sourceMappingURL=getDependabotOrganizationSecrets.js.map
;